Magento2/Kubernetes/tls/cert-pod.yaml (21 lines of code) (raw):

apiVersion: v1 kind: Pod metadata: name: cert-pod namespace: magento spec: containers: - name: busybox image: busybox command: [ "sh", "-c", "sleep 3600" ] volumeMounts: - name: secrets-store mountPath: "/mnt/secrets-store" readOnly: true volumes: - name: secrets-store csi: driver: secrets-store.csi.k8s.io readOnly: true volumeAttributes: secretProviderClass: magento-secret-provider