Skip to content

Commit c61542c

Browse files
author
Alan Christie
committed
fix: Avoid some warnings
1 parent 3bba1ba commit c61542c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

roles/mini-apps-ui/tasks/deploy.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323

2424
- name: Create namespace material
2525
k8s:
26-
definition: "{{ lookup('template', '{{ item }}.yaml.j2') }}"
26+
definition: "{{ lookup('template', item) }}"
2727
wait: yes
2828
loop:
29-
- serviceaccount
30-
- role
31-
- rolebinding-role-sa
29+
- serviceaccount.yaml.j2
30+
- role.yaml.j2
31+
- rolebinding-role-sa.yaml.j2
3232

3333
- name: Relax ({{ maui_namespace }} 'default' service account (for cert-manager)
3434
k8s:
@@ -39,11 +39,11 @@
3939

4040
- name: Deploy application
4141
k8s:
42-
definition: "{{ lookup('template', '{{ item }}.yaml.j2') }}"
42+
definition: "{{ lookup('template', item) }}"
4343
wait: yes
4444
wait_timeout: "{{ pod_ready_timeout }}"
4545
loop:
46-
- configmap
47-
- statefulset
48-
- service
49-
- ingress
46+
- configmap.yaml.j2
47+
- statefulset.yaml.j2
48+
- service.yaml.j2
49+
- ingress.yaml.j2

0 commit comments

Comments
 (0)