Update connecting-applications.md

This commit is contained in:
Janet Kuo
2016-03-29 19:42:04 -07:00
parent 8f8a777ae2
commit 51d2d18801
4 changed files with 192 additions and 218 deletions
+25
View File
@@ -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