- Editer
~/.gitconfig
[user]
| 161207 8:40:22 [Note] /usr/sbin/mysqld (mysqld 5.5.53-0ubuntu0.14.04.1) starting as process 23 ... | |
| Uptime: 2 Threads: 1 Questions: 2 Slow queries: 0 Opens: 34 Flush tables: 1 Open tables: 26 Queries per second avg: 1.000 | |
| Setting up database | |
| CATTLE_AGENT_PACKAGE_HOST_API_URL=/usr/share/cattle/artifacts/host-api.tar.gz | |
| CATTLE_AGENT_PACKAGE_PYTHON_AGENT_URL=/usr/share/cattle/artifacts/go-agent.tar.gz | |
| CATTLE_API_UI_URL=//releases.rancher.com/api-ui/1.0.8 | |
| CATTLE_CATTLE_VERSION=v0.174.3 | |
| CATTLE_DB_CATTLE_DATABASE=mysql | |
| CATTLE_DB_CATTLE_MYSQL_HOST=localhost | |
| CATTLE_DB_CATTLE_MYSQL_NAME=cattle |
| └> time vagrant up | |
| Vagrant Patch Loaded: GuestRedHat change_host_name (1.9.1) | |
| Vagrant Patch Loaded: GuestRedHat configure_networks (1.9.1) | |
| Validating Plugins... | |
| Validating User Config... | |
| Using DC/OS Installer: installers/dcos/dcos_generate_config-1.8.7.sh | |
| Using DC/OS Config: etc/config-1.8.yaml | |
| Validating Machine Config... | |
| Configuring VirtualBox Host-Only Network... | |
| >>> Creating VirtualBox Network |
| # kubernetes - is an open source system for managing containerized | |
| # applications across multiple hosts, providing basic mechanisms for | |
| # deployment, maintenance, and scaling of applications. | |
| # See: https://kubernetes.io | |
| function __kubectl_no_command | |
| set -l cmd (commandline -poc) | |
| if not set -q cmd[2] | |
| return 0 | |
| end |
| function minikube-update -d 'Update minikube to latest release' | |
| curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 ; and chmod +x minikube ; and mv minikube ~/.local/bin/ | |
| end | |
| function kubectl-update -d 'Update kubectl to latest release' | |
| curl -Lo kubectl https://storage.googleapis.com/kubernetes-release/release/(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl ; and chmod +x kubectl ; and mv kubectl ~/.local/bin/ | |
| end |
| --- | |
| apiVersion: batch/v2alpha1 | |
| kind: CronJob | |
| metadata: | |
| name: hello | |
| spec: | |
| schedule: "*/1 * * * *" | |
| jobTemplate: | |
| spec: | |
| template: |
| #!/bin/env bash | |
| # Configuration | |
| export PUBLIC_DNS=<public hostname> | |
| export PUBLIC_IP=<public host IP> | |
| export PRIVATE_IP=<private host IP> | |
| mkdir docker-ca | |
| chmod 0700 docker-ca/ | |
| cd docker-ca/ |
| function compose-update -d 'Update docker-compose to version provided in param or latest release if no param provided' | |
| set compose_version (curl -s https://api.github.com/repos/docker/compose/releases/latest | jq .tag_name | tr -d '"') | |
| if not test -z "$argv" | |
| set compose_version $argv | |
| end | |
| echo "Retreiving docker-compose version $compose_version" | |
| echo "gna" | |
| curl -Lo ~/tmp/docker-compose https://github.com/docker/compose/releases/download/$compose_version/docker-compose-Linux-x86_64 | |
| chmod +x ~/tmp/docker-compose ; and mv ~/tmp/docker-compose ~/.local/bin/ | |
| which docker-compose |
I hereby claim:
To claim this, I am signing this object:
| [INFO] → 588 of 657 modules :: src/main/webapp/app/entities/job-history/job-histor | |
| [INFO] y.service.ts ~ internal | |
| [ERROR] events.js:167 | |
| [ERROR] throw er; // Unhandled 'error' event | |
| [ERROR] ^ | |
| [ERROR] | |
| [ERROR] Error [ERR_STREAM_DESTROYED]: Cannot call write after a stream was destroyed | |
| [ERROR] at doWrite (_stream_writable.js:406:19) | |
| [ERROR] at writeOrBuffer (_stream_writable.js:394:5) | |
| [ERROR] at Socket.Writable.write (_stream_writable.js:294:11) |