Skip to content

Commit 0514ed7

Browse files
author
Alan Christie
committed
fix: Change of service name
1 parent 2bb3c18 commit 0514ed7

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

ansible/roles/app/tasks/deploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
loop:
5454
- deployment
5555
- service-internal
56-
- service-ws
56+
- service-public
5757

5858
- name: Deploy ingress ({{ ess_namespace }})
5959
kubernetes.core.k8s:

ansible/roles/app/tasks/undeploy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
state: absent
88
loop:
99
- ingress
10-
- service-ws
10+
- service-public
1111
- service-internal
1212
- deployment
1313
- pvc

ansible/roles/app/templates/ingress.yaml.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ spec:
2020
- host: {{ ess_ws_hostname }}
2121
http:
2222
paths:
23-
- path: /
23+
- path: /event-stream
2424
pathType: Prefix
2525
backend:
2626
service:
27-
name: ess-ws
27+
name: ess-public
2828
port:
2929
name: ws

ansible/roles/app/templates/service-ws.yaml.j2 renamed to ansible/roles/app/templates/service-public.yaml.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
kind: Service
33
apiVersion: v1
44
metadata:
5-
name: ess-ws
5+
name: ess-public
66
namespace: {{ ess_namespace }}
77
labels:
8-
name: ess-ws
8+
name: ess-public
99
spec:
1010
selector:
1111
name: ess
1212
ports:
1313
- name: ws
14-
port: 80
14+
port: 8080
1515
targetPort: ws

ansible/roles/app/vars/main.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ess_ingress_class: nginx
88
# and 'letsencrypt-nginx-production'
99
ess_cert_manager_issuer_base: letsencrypt-{{ ess_ingress_class }}
1010
# SSL certificate issuer?
11-
ess_cert_issuer: production
11+
ess_cert_issuer: ''
1212

1313
ess_priority_class: ''
1414
ess_api_termination_grace_period_seconds: 30

0 commit comments

Comments
 (0)