# Generation of Kubernetes YAML is still under development! # # Save the output of this file and use kubectl create -f to import # it into Kubernetes. # # Created with podman-1.4.4 apiVersion: v1 kind: Pod metadata: creationTimestamp: "2019-07-31T21:46:14Z" labels: app: pod-vault name: pod-vault spec: volumes: - name: vault-sysconfdir hostPath: path: /etc/vault type: Directory - name: vault-statedir hostPath: path: /var/lib/vault type: Directory - name: vault-logs hostPath: path: /var/log/vault type: Directory containers: - command: - docker-entrypoint.sh - server env: - name: VAULT_ADDR value: http://127.0.0.1:8200 image: docker.io/library/vault:latest name: vault ports: - containerPort: 8200 hostIP: 127.0.0.1 hostPort: 8200 protocol: TCP volumeMounts: - mountPath: /vault/config:z name: vault-sysconfdir - mountPath: /vault/logs:z name: vault-logs - mountPath: /vault/file:z name: vault-statedir resources: {} securityContext: allowPrivilegeEscalation: true capabilities: add: - CAP_IPC_LOCK privileged: false readOnlyRootFilesystem: false stdin: true tty: true workingDir: / status: {}