mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
27c5f1f1f2
Signed-off-by: Gustavo <gustavo@externalsecrets.com>
34 lines
No EOL
849 B
YAML
34 lines
No EOL
849 B
YAML
{% raw %}
|
|
apiVersion: external-secrets.io/v1beta1
|
|
kind: ExternalSecret
|
|
metadata:
|
|
name: harbor-chart-robot
|
|
namespace: ci
|
|
spec:
|
|
refreshInterval: 1h
|
|
secretStoreRef:
|
|
name: vault-backend
|
|
kind: ClusterSecretStore
|
|
target:
|
|
name: harbor-chart-robot
|
|
template:
|
|
metadata:
|
|
labels:
|
|
"jenkins.io/credentials-type": "usernamePassword"
|
|
annotations:
|
|
"jenkins.io/credentials-description": "harbor chart robot"
|
|
data:
|
|
username: >-
|
|
{{ printf "{{ .username | toString }}" }}
|
|
password: >-
|
|
{{ printf "{{ .password | toString }}" }}
|
|
data:
|
|
- secretKey: username
|
|
remoteRef:
|
|
key: my-kv
|
|
property: harbor-chart-robot-username
|
|
- secretKey: password
|
|
remoteRef:
|
|
key: my-kv
|
|
property: harbor-chart-robot-token
|
|
{% endraw %} |