- adding the k8s service file
- adding the tls sidekick
This commit is contained in:
parent
e116556e7f
commit
8b8c4db161
|
@ -16,13 +16,14 @@ spec:
|
||||||
containers:
|
containers:
|
||||||
- name: vault-sidekick
|
- name: vault-sidekick
|
||||||
image: gambol99/vault-sidekick:0.0.1
|
image: gambol99/vault-sidekick:0.0.1
|
||||||
|
imagePullPolicy: Always
|
||||||
args:
|
args:
|
||||||
- -logtostderr=true
|
- -logtostderr=true
|
||||||
- -v=4
|
- -v=4
|
||||||
- -tls-skip-verify=true
|
- -tls-skip-verify=true
|
||||||
- -auth=/etc/token/vault-token.yml
|
- -auth=/etc/token/vault-token.yml
|
||||||
- -output=/etc/secrets
|
- -output=/etc/secrets
|
||||||
- -cn=secret:db:up=30s,rv=true
|
- -cn=secret:db:up=3h,rv=true
|
||||||
- -cn=pki:example-dot-com:cn=demo.example.com,fmt=cert,fn=demo.example.com
|
- -cn=pki:example-dot-com:cn=demo.example.com,fmt=cert,fn=demo.example.com
|
||||||
- -vault=https://vault.services.cluster.local:8200
|
- -vault=https://vault.services.cluster.local:8200
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
@ -30,6 +31,18 @@ spec:
|
||||||
mountPath: /etc/secrets
|
mountPath: /etc/secrets
|
||||||
- name: token
|
- name: token
|
||||||
mountPath: /etc/token
|
mountPath: /etc/token
|
||||||
|
- name: nginx-tls-sidekick
|
||||||
|
image: quay.io/ukhomeofficedigital/nginx-tls-sidekick
|
||||||
|
imagePullPolicy: Always
|
||||||
|
args:
|
||||||
|
- ./run.sh
|
||||||
|
- -p
|
||||||
|
- 443:127.0.0.1:80:demo.example.com
|
||||||
|
ports:
|
||||||
|
- containerPort: 443
|
||||||
|
volumeMounts:
|
||||||
|
- name: secrets
|
||||||
|
mountPath: /etc/secrets
|
||||||
- name: apache
|
- name: apache
|
||||||
image: fedora/apache
|
image: fedora/apache
|
||||||
ports:
|
ports:
|
||||||
|
|
14
services/demo-svc.yml
Normal file
14
services/demo-svc.yml
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
name: vault-demo
|
||||||
|
name: vault-demo
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- name: https
|
||||||
|
port: 443
|
||||||
|
targetPort: 443
|
||||||
|
selector:
|
||||||
|
name: vault-demo
|
Reference in a new issue