2017-03-24 18:03:01 +00:00
|
|
|
apiVersion: apps/v1beta1
|
2016-03-30 02:42:04 +00:00
|
|
|
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
|