-
Notifications
You must be signed in to change notification settings - Fork 1
/
vault-pki.yaml
49 lines (49 loc) · 1013 Bytes
/
vault-pki.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
apiVersion: v1
kind: Secret
metadata:
name: vault-tls
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: vault-pki
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: vault-pki
spec:
selector:
matchLabels:
app: vault-pki
template:
metadata:
labels:
app: vault-pki
spec:
serviceAccountName: vault-pki
containers:
- name: pki-manager
image: quay.io/utilitywarehouse/vault-toolkit
args:
- pki-manager
env:
- name: VAULT_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
resources:
limits:
cpu: 1000m
memory: 512Mi
requests:
cpu: 0m
memory: 20Mi
volumeMounts:
- name: tls
mountPath: /etc/tls
volumes:
- name: tls
secret:
secretName: vault-tls
optional: true