File tree 2 files changed +28
-6
lines changed
ansible/roles/awx-instance/tasks
2 files changed +28
-6
lines changed Original file line number Diff line number Diff line change 123
123
124
124
update_json_status(changed=get_or_create_job_template(**kwarg))
125
125
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
+
126
154
- name : " job template for backups"
127
155
awx_script :
128
156
supports_check_mode : yes
Original file line number Diff line number Diff line change 194
194
readOnly : true
195
195
- name : awx-redis-socket
196
196
mountPath : " /var/run/redis"
197
- - name : wp-nfs
198
- mountPath : " /srv"
199
- readOnly : true
200
197
# For some reason, awx-task insists on being able to
201
198
# constantly update /etc/receptor/receptor.conf, even
202
199
# though we don't need that in Kubernetes. Oh well, at
258
255
serviceAccountName : " {{ awx_service_account }}"
259
256
terminationGracePeriodSeconds : 10
260
257
volumes :
261
- - name : wp-nfs
262
- persistentVolumeClaim :
263
- claimName : wordpress-0
264
258
- name : awx-application-config
265
259
configMap :
266
260
name : awx-config
You can’t perform that action at this time.
0 commit comments