We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a46b8e0 commit 65ef0f9Copy full SHA for 65ef0f9
src/roles/foreman_proxy/defaults/main.yaml
@@ -1,4 +1,8 @@
1
---
2
+foreman_proxy_container_image: "quay.io/foreman/foreman-proxy"
3
+foreman_proxy_container_tag: "nightly"
4
+foreman_proxy_registry_auth_file: /etc/foreman/registry-auth.json
5
+
6
foreman_proxy_name: "{{ ansible_facts['fqdn'] }}"
7
foreman_proxy_https_port: 8443
8
foreman_proxy_url: "https://{{ foreman_proxy_name }}:{{ foreman_proxy_https_port }}"
src/roles/foreman_proxy/tasks/main.yaml
@@ -3,6 +3,8 @@
containers.podman.podman_image:
name: "{{ foreman_proxy_container_image }}:{{ foreman_proxy_container_tag }}"
state: present
+ environment:
+ REGISTRY_AUTH_FILE: "{{ foreman_proxy_registry_auth_file }}"
9
- name: Create config secrets
10
ansible.builtin.include_tasks: configs.yaml
0 commit comments