-
Notifications
You must be signed in to change notification settings - Fork 25
Rotate CI passwords (antelope) #2239
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,14 +36,14 @@ kolla_build_neutron_ovs: true | |
| # Build against the development Pulp service repositories. | ||
| # Use Ark's package repositories to install packages. | ||
| stackhpc_repo_mirror_url: "{{ stackhpc_repo_mirror_auth_proxy_url if stackhpc_repo_mirror_auth_proxy_enabled | bool else stackhpc_release_pulp_url }}" | ||
| stackhpc_repo_mirror_username: "skc-ci-builder-reader" | ||
| stackhpc_repo_mirror_username: "skc-ci-builder-reader-antelope" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. To improve maintainability and avoid hardcoding the release name, consider using the openstack_release_codename variable to construct this username. This will make it easier to update for future OpenStack releases. Ensure that the resulting username remains dedicated to this environment to maintain isolation as per security guidelines. stackhpc_repo_mirror_username: "skc-ci-builder-reader-{{ openstack_release_codename }}"References
|
||
| stackhpc_repo_mirror_password: !vault | | ||
| $ANSIBLE_VAULT;1.1;AES256 | ||
| 65353432616332643332646463303562326534633935343338323562343062323936393861636637 | ||
| 6364653733343035623138316561316462313939393430300a666436633535323163386338336266 | ||
| 64346461653933613838643163333932353365613535373038663731666230663632646531343662 | ||
| 6362346163613633390a663264626438333263386132326238623866633466373635666161326462 | ||
| 61346130346339643433656562363366623561356162386138616430356463613633 | ||
| 31323137656135646165393064313761626339313138356464316334343235343665323836653336 | ||
| 3263613766313332306562656332346561363536313230340a333935646163666539353338613436 | ||
| 33626163333633646461666631643062383761376332396231326361636432316661363161323862 | ||
| 3339653936386435330a346233353062653931663965663938323665633136616132336232323533 | ||
| 64626161373938343437323133366264313332373930363565333964646334333132 | ||
|
|
||
| # Build against released Pulp repository versions. | ||
| stackhpc_repo_grafana_version: "{{ stackhpc_pulp_repo_grafana_version }}" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| kayobe@git+https://github.com/stackhpc/kayobe@stackhpc/14.7.0.23 | ||
| kayobe@git+https://github.com/stackhpc/kayobe@stackhpc/14.7.0.24 | ||
| ansible-modules-hashivault>=5.2.1 | ||
| jmespath |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To improve maintainability and avoid hardcoding the release name, consider using the openstack_release_codename variable to construct this username. This will make it easier to update for future OpenStack releases. Ensure that the resulting username remains dedicated to this environment to maintain isolation as per security guidelines.
References