Move Guide topic: Connecting Apps with Services. (#2885)

This commit is contained in:
Steve Perry
2017-03-16 16:50:19 -07:00
committed by GitHub
parent d239db84cf
commit e889494348
7 changed files with 401 additions and 292 deletions
@@ -0,0 +1,25 @@
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: curl-deployment
spec:
replicas: 1
template:
metadata:
labels:
app: curlpod
spec:
volumes:
- name: secret-volume
secret:
secretName: nginxsecret
containers:
- name: curlpod
command:
- sh
- -c
- while true; do sleep 1; done
image: radial/busyboxplus:curl
volumeMounts:
- mountPath: /etc/nginx/ssl
name: secret-volume