Skip to content

Commit

Permalink
Add apply, fix client deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Viktoriia committed Nov 23, 2023
1 parent 0c19aaf commit 041e998
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ansible/roles/tldraw-client-core/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@
kubernetes.core.k8s:
kubeconfig: ~/.kube/config
namespace: "{{ NAMESPACE }}"
template: tldraw-client-ingress.yml.j2
template: tldraw-client-ingress.yml.j2
apply: yes
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ spec:
resources:
limits:
cpu: {{ TLDRAW_CLIENT_CPU_LIMITS|default("1000m", true) }}
memory: {{ TLDRAW_CLIENT_MEMORY_LIMITS|default("256Mi", true) }}
memory: {{ TLDRAW_CLIENT_MEMORY_LIMITS|default("2Gi", true) }}
requests:
cpu: {{ TLDRAW_CLIENT_CPU_REQUESTS|default("100m", true) }}
memory: {{ TLDRAW_CLIENT_MEMORY_REQUESTS|default("32Mi", true) }}
memory: {{ TLDRAW_CLIENT_MEMORY_REQUESTS|default("256Mi", true) }}
volumes:
- name: pid-dir
emptyDir: {}
Expand Down

0 comments on commit 041e998

Please sign in to comment.