mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
164e8776ec
Signed-off-by: Gustavo Carvalho <gustavo.carvalho@container-solutions.com>
27 lines
668 B
YAML
27 lines
668 B
YAML
---
|
|
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: github-ssh-access
|
|
namespace: ci
|
|
spec:
|
|
refreshInterval: 1m
|
|
secretStoreRef:
|
|
name: cluster-parameter-store
|
|
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:
|
|
- secretKey: username
|
|
remoteRef:
|
|
key: /service/github/sshUserPrivateKeyUserName
|
|
- secretKey: privateKey
|
|
remoteRef:
|
|
key: /service/github/sshUserPrivateKey
|
|
|