2022-02-07 11:14:06 +00:00
|
|
|
{% raw %}
|
2022-03-09 09:48:25 +00:00
|
|
|
apiVersion: external-secrets.io/v1beta1
|
2022-02-07 11:14:06 +00:00
|
|
|
kind: ExternalSecret
|
|
|
|
metadata:
|
|
|
|
name: github-ssh-access
|
|
|
|
namespace: ci
|
|
|
|
spec:
|
|
|
|
refreshInterval: 1m
|
|
|
|
secretStoreRef:
|
|
|
|
name: vault-backend
|
|
|
|
kind: ClusterSecretStore
|
|
|
|
target:
|
|
|
|
name: github-ssh-access
|
|
|
|
template:
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
"jenkins.io/credentials-type": "basicSSHUserPrivateKey"
|
|
|
|
annotations:
|
|
|
|
"jenkins.io/credentials-description": "github-ssh-access key"
|
|
|
|
data:
|
|
|
|
username: >-
|
|
|
|
{{ printf "{{ .username | toString }}" }}
|
|
|
|
privateKey: >-
|
|
|
|
{{ printf "{{ .privateKey | toString }}" }}
|
|
|
|
data:
|
|
|
|
- secretKey: username
|
|
|
|
remoteRef:
|
|
|
|
key: my-kv
|
|
|
|
property: github-ssh-access-username
|
|
|
|
- secretKey: privateKey
|
|
|
|
remoteRef:
|
|
|
|
key: my-kv
|
|
|
|
property: github-ssh-access-private-key
|
|
|
|
{% endraw %}
|