Skip to content

Commit

Permalink
Add ingress to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktoriia committed Nov 21, 2023
1 parent 7301af0 commit 23578ba
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions ansible/roles/tldraw-client-core/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,24 @@
- name: Tldraw Client Service
- name: TldrawClientService
kubernetes.core.k8s:
kubeconfig: ~/.kube/config
namespace: "{{ NAMESPACE }}"
template: tldraw-client-svc.yml.j2

- name: Tldraw Client Configmap
- name: TldrawClientConfigmap
kubernetes.core.k8s:
kubeconfig: ~/.kube/config
namespace: "{{ NAMESPACE }}"
template: tldraw-client-configmap.yml.j2
apply: yes

- name: Tldraw Client Deployment
- name: TldrawClientDeployment
kubernetes.core.k8s:
kubeconfig: ~/.kube/config
namespace: "{{ NAMESPACE }}"
template: tldraw-client-deployment.yml.j2
template: tldraw-client-deployment.yml.j2

- name: TldrawClientIngress
kubernetes.core.k8s:
kubeconfig: ~/.kube/config
namespace: "{{ NAMESPACE }}"
template: tldraw-client-ingress.yml.j2

0 comments on commit 23578ba

Please sign in to comment.