-
Notifications
You must be signed in to change notification settings - Fork 0
/
values-secret.yaml.template
80 lines (69 loc) · 2.35 KB
/
values-secret.yaml.template
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
69
70
71
72
73
74
75
76
77
78
79
---
version: "2.0"
secrets:
- name: imageregistry
fields:
# eg. Quay -> Robot Accounts -> Robot Login
- name: username
value: "..username.."
- name: password
value: "..password.."
- name: git
fields:
# Go to: https://github.com/settings/tokens
- name: username
value: "..gitusername.."
- name: password
value: "..gitpassword.."
# This is NOT for Quay.io. This is for the installed Quay registry.
- name: quay
fields:
- name: account
value: quayuser
- name: password
value: "..password.."
- name: email
value: "..email.."
# We are configuring basic-auth and need to generate a username/password for the service.
# The below defaults to reports / reports. To create your own htpasswd file:
#
# htpasswd -Bbc htpasswd reports <your_password>
#
# and then copy the contents of the file here. Please note, that if you're md5hash has a `$`
# you will need to escape it. For example: $2y$05 would need to be \$2y\$05
- name: devsecops
fields:
- name: htpasswd
value: 'reports:\$2y\$05\$Wyb7hsjejBvut7jrmHqdFOLoIIFnAJHad1gzgCaDmhLw0CqnLt5BG'
- name: kiosk-ssh
fields:
- name: username
value: 'Username of user to attach privatekey and publickey to - cloud-user is a typical value'
- name: privatekey
value: 'Private ssh key of the user who will be able to elevate to root to provision kiosks'
- name: publickey
value: 'Public ssh key of the user who will be able to elevate to root to provision kiosks'
- name: rhsm
fields:
- name: username
value: 'username of user to register RHEL VMs'
- name: password
value: 'password of rhsm user in plaintext'
- name: kiosk-extra
fields:
# Default: '--privileged -e GATEWAY_ADMIN_PASSWORD=redhat'
- name: container_extra_params
value: "Optional extra params to pass to kiosk ignition container, including admin password"
- name: cloud-init
fields:
- name: userData
value: |-
#cloud-config
user: 'username of user for console, probably cloud-user'
password: 'a suitable password to use on the console'
chpasswd: { expire: False }
- name: aap-manifest
fields:
- name: b64content
path: 'full pathname of file containing Satellite Manifest for entitling Ansible Automation Platform'
base64: true