Skip to content

Commit 89e81dd

Browse files
author
Dominique Quatravaux
committed
[feature] Make the NFS volumes accessible to the AWX worker pods
Move the `wp-nfs` volumeMount and volume from the `awx-task` container (where it is no longer used), to the `default` `InstanceGroup`'s pod template.
1 parent 4f64b97 commit 89e81dd

File tree

2 files changed

+28
-6
lines changed

2 files changed

+28
-6
lines changed

ansible/roles/awx-instance/tasks/awx-objects.yml

+28
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,34 @@
123123
124124
update_json_status(changed=get_or_create_job_template(**kwarg))
125125
126+
- name: "`default` InstanceGroup: provide /srv NFS volume to worker pods"
127+
awx_script:
128+
supports_check_mode: yes
129+
script: |
130+
{{ lookup("template", "awx_script_lib.py") }}
131+
from awx.main.models.ha import InstanceGroup
132+
133+
# We *should not* create the InstanceGroup here - Rather, we
134+
# want `-t awx.seed` to take care of that, so that it may put in
135+
# all the required bells and whistles:
136+
InstanceGroup.objects.get(name="default")
137+
138+
# Still, we want to use `AnsibleGetOrCreate` for its
139+
# `supports_check_mode` goodness:
140+
with AnsibleGetOrCreate(InstanceGroup, name="default") as grp:
141+
grp.pod_spec_override = """
142+
spec:
143+
containers:
144+
- name: worker
145+
volumeMounts:
146+
- name: wp-nfs
147+
mountPath: "/srv"
148+
volumes:
149+
- name: wp-nfs
150+
persistentVolumeClaim:
151+
claimName: wordpress-0
152+
"""
153+
126154
- name: "job template for backups"
127155
awx_script:
128156
supports_check_mode: yes

ansible/roles/awx-instance/tasks/k8s.yml

-6
Original file line numberDiff line numberDiff line change
@@ -194,9 +194,6 @@
194194
readOnly: true
195195
- name: awx-redis-socket
196196
mountPath: "/var/run/redis"
197-
- name: wp-nfs
198-
mountPath: "/srv"
199-
readOnly: true
200197
# For some reason, awx-task insists on being able to
201198
# constantly update /etc/receptor/receptor.conf, even
202199
# though we don't need that in Kubernetes. Oh well, at
@@ -258,9 +255,6 @@
258255
serviceAccountName: "{{ awx_service_account }}"
259256
terminationGracePeriodSeconds: 10
260257
volumes:
261-
- name: wp-nfs
262-
persistentVolumeClaim:
263-
claimName: wordpress-0
264258
- name: awx-application-config
265259
configMap:
266260
name: awx-config

0 commit comments

Comments
 (0)