123456789101112131415161718192021222324252627282930313233343536 |
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: the-deployment
- labels:
- deployment: hello
- spec:
- replicas: 3
- selector:
- matchLabels:
- deployment: hello
- template:
- metadata:
- labels:
- deployment: hello
- spec:
- containers:
- - name: the-container
- image: monopole/hello:1
- command: ["/hello",
- "--port=8080",
- "--enableRiskyFeature=$(ENABLE_RISKY)"]
- ports:
- - containerPort: 8080
- env:
- - name: ALT_GREETING
- valueFrom:
- configMapKeyRef:
- name: the-map
- key: altGreeting
- - name: ENABLE_RISKY
- valueFrom:
- configMapKeyRef:
- name: the-map
- key: enableRisky
|