-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclusters.yaml
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathclusters.yaml
File metadata and controls
37 lines (37 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# ArgoCD uses secrets to configure which clusters are available to it.
# It's ok that this is here because it doesn't contain any credentials
apiVersion: v1
stringData:
config: '{"tlsClientConfig":{"insecure":false}}'
name: cluster-1
server: https://kubernetes.xyz
kind: Secret
metadata:
annotations:
managed-by: argocd.argoproj.io
labels:
app.kubernetes.io/part-of: argo-cd
argocd.argoproj.io/secret-type: cluster
# env: env-1
name: cluster-1
namespace: argocd
type: Opaque
---
# ArgoCD uses secrets to configure which clusters are available to it.
# It's ok that this is here because it doesn't contain any credentials
apiVersion: v1
stringData:
config: '{"tlsClientConfig":{"insecure":false}}'
name: cluster-2
server: https://kubernetes.xyz.com
kind: Secret
metadata:
annotations:
managed-by: argocd.argoproj.io
labels:
app.kubernetes.io/part-of: argo-cd
argocd.argoproj.io/secret-type: cluster
# cluster-group: group-1
name: cluster-2
namespace: argocd
type: Opaque