-
Notifications
You must be signed in to change notification settings - Fork 124
/
secret.yaml
68 lines (62 loc) · 1.35 KB
/
secret.yaml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
apiVersion: v1
kind: Secret
metadata:
name: registry-creds-dpr
namespace: kube-system
labels:
app: registry-creds
kubernetes.io/minikube-addons: registry-creds
cloud: private
data:
DOCKER_PRIVATE_REGISTRY_SERVER: Y2hhbmdlbWU=
DOCKER_PRIVATE_REGISTRY_USER: Y2hhbmdlbWU=
DOCKER_PRIVATE_REGISTRY_PASSWORD: Y2hhbmdlbWU=
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: registry-creds-ecr
namespace: kube-system
labels:
app: registry-creds
kubernetes.io/minikube-addons: registry-creds
cloud: ecr
data:
AWS_ACCESS_KEY_ID: Y2hhbmdlbWU=
AWS_SECRET_ACCESS_KEY: Y2hhbmdlbWU=
AWS_SESSION_TOKEN: Y2hhbmdlbWU=
aws-account: Y2hhbmdlbWU=
aws-region: Y2hhbmdlbWU=
aws-assume-role: Y2hhbmdlbWU=
AWS_SESSION_TOKEN: ""
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: registry-creds-gcr
namespace: kube-system
labels:
app: registry-creds
kubernetes.io/minikube-addons: registry-creds
cloud: gcr
data:
application_default_credentials.json: Y2hhbmdlbWU=
gcrurl: aHR0cHM6Ly9nY3IuaW8=
type: Opaque
---
apiVersion: v1
kind: Secret
metadata:
name: registry-creds-acr
namespace: kube-system
labels:
app: registry-creds
kubernetes.io/minikube-addons: registry-creds
cloud: acr
data:
ACR_URL: Y2hhbmdlbWU=
ACR_CLIENT_ID: Y2hhbmdlbWU=
ACR_PASSWORD: Y2hhbmdlbWU=
type: Opaque