mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-15 18:12:59 +00:00
23 lines
637 B
YAML
23 lines
637 B
YAML
|
apiVersion: apps/v1
|
||
|
kind: Deployment
|
||
|
metadata:
|
||
|
name: hello-mtls-client
|
||
|
labels: {app: hello-mtls-client}
|
||
|
spec:
|
||
|
replicas: 1
|
||
|
selector: {matchLabels: {app: hello-mtls-client}}
|
||
|
template:
|
||
|
metadata:
|
||
|
annotations:
|
||
|
autocert.step.sm/name: hello-mtls-client.default.pod.cluster.local
|
||
|
labels: {app: hello-mtls-client}
|
||
|
spec:
|
||
|
containers:
|
||
|
- name: hello-mtls-client
|
||
|
image: hello-mtls-client-node:latest
|
||
|
imagePullPolicy: Never
|
||
|
resources: {requests: {cpu: 10m, memory: 20Mi}}
|
||
|
env:
|
||
|
- name: HELLO_MTLS_URL
|
||
|
value: https://hello-mtls.default.svc.cluster.local
|