- kubectl run -l app=other --image=tutum/curl --restart=Never --rm -i -t test-1
- image: gcr.io/google-samples/hello-app:1.0
- kubectl exec my-nginx-585fbfd5f4-fpdb4 -i -t -- bash
server { listen 80; server_name my-nginx; location / { proxy_pass http://www.baidu.com; } location /h1 { proxy_pass http://my-web:8080; } }
- 使用kompose可以将swarm的docker compose转为k8s的yaml
- kubectl create secret docker-registry regcred --docker-server= --docker-username= --docker-password= --docker-email=
- kubectl run -l app=other --image=jbergknoff/postgresql-client --restart=Never --rm -i -t test-pg-sql-1 postgresql://test:test@cloudsql-proxy-test-3:5432
- kubectl run -i --rm --tty mysql-client --image=mysql/mysql-server --restart=Never --command -- /bin/sh mysql -h(host) -P(port) -u(user) -p(pwd)
- kubectl run -l app=other --image=zhaoyao91/ubuntool --restart=Never --rm -i -t test-ubuntool-1
- ambassador代理服务,在annotaton中加入匹配规则,更灵活,更方便,修改的是yaml文件,直接使用apply更新
- postb.in 可以接受请求,查看请求体等
kubectl run -l app=other --image=zhaoyao91/nats-repl2 --env="METHOD_NATS_URL=nats://nats-srv:4222" --env="EVENT_NATS_URL=nats://nats-srv:4222" --restart=Never --rm -i -t \ test-nats-1
https://www.ietf.org/rfc/rfc1928.txt
http://www.nncron.ru/help/EN/working/cron-format.htm
node.green
https://www.html.cn/archives/9922
docker run --rm --name redis-commander -d --env REDIS_HOSTS=redis:xxx.xx.xx.xx:6379 -p 8081:8081 rediscommander/redis-commander:latest