| 123456789101112131415161718192021 |
- apiVersion: external-secrets.io/v1
- kind: SecretStore
- metadata:
- name: passbolt-with-custom-ca
- spec:
- provider:
- passbolt:
- host: https://passbolt.example.com
- # Reference a ConfigMap or Secret containing the CA bundle that signed
- # the Passbolt server certificate.
- caProvider:
- type: ConfigMap
- name: passbolt-ca-bundle
- key: ca.crt
- auth:
- passwordSecretRef:
- key: password
- name: passbolt-credentials
- privateKeySecretRef:
- key: privateKey
- name: passbolt-credentials
|