Skip to content

Commit ba1cb20

Browse files
committed
fix: remove docker_registry_ca from being set
The task that uses this variable cannot handle the variable being empty or omitted. This has been left unset within the base environment. Signed-off-by: Jack Hodgkiss <jack@stackhpc.com>
1 parent ad1fead commit ba1cb20

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

doc/source/configuration/openbao.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -496,6 +496,20 @@ To enable TLS for Pulp we first need to generate the certificates and the procee
496496
497497
kayobe seed service reconfigure -t seed-deploy-containers -kt none
498498
499+
5. Set CA for docker registry
500+
501+
.. code-block::
502+
:caption: $KAYOBE_CONFIG_PATH/container-engine.yml
503+
504+
# CA of docker registry
505+
docker_registry_ca: "{{ kayobe_env_config_path ~ '/openbao/OS-TLS-INT.crt' if pulp_enable_tls | bool else '' }}"
506+
507+
6. Perform host configure to reconfigure APT, DNF and docker/podman settings
508+
509+
.. code-block::
510+
511+
kayobe overcloud host configure -t dnf,apt,container-engine
512+
499513
Barbican integration
500514
====================
501515

etc/kayobe/container-engine.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ docker_registry: "{{ stackhpc_docker_registry }}"
4040
docker_registry_insecure: "{{ 'https' not in stackhpc_repo_mirror_url }}"
4141

4242
# CA of docker registry
43-
docker_registry_ca: "{{ kayobe_env_config_path ~ '/openbao/OS-TLS-INT.crt' if pulp_enable_tls | bool else none }}"
43+
#docker_registry_ca:
4444

4545
# List of Docker registry mirrors.
4646
#docker_registry_mirrors:

0 commit comments

Comments
 (0)