Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

apps: Switch jobs to ClusterIP and NEG #2731

Merged
merged 1 commit into from
Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion apps/sippy/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ metadata:
namespace: sippy
labels:
app: sippy
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
ports:
- port: 9080
Expand All @@ -13,4 +15,4 @@ spec:
selector:
app: sippy
sessionAffinity: None
type: NodePort
type: ClusterIP
4 changes: 3 additions & 1 deletion apps/slack-infra/resources/slack-event-log/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slack-event-log
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slack-event-log
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slack-moderator-words
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slack-moderator-words
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
4 changes: 3 additions & 1 deletion apps/slack-infra/resources/slack-moderator/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slack-moderator
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slack-moderator
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
4 changes: 3 additions & 1 deletion apps/slack-infra/resources/slack-post-message/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slack-post-message
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slack-post-message
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
4 changes: 3 additions & 1 deletion apps/slack-infra/resources/slack-welcomer/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slack-welcomer
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slack-welcomer
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
4 changes: 3 additions & 1 deletion apps/slack-infra/resources/slackin/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ kind: Service
apiVersion: v1
metadata:
name: slackin2
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
selector:
app: slackin2
type: NodePort
type: ClusterIP
ports:
- protocol: TCP
port: 80
Expand Down
4 changes: 3 additions & 1 deletion apps/triageparty-release/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ metadata:
namespace: triageparty-release
labels:
app: triage-party
annotations:
cloud.google.com/neg: '{"ingress": true}'
spec:
type: NodePort
type: ClusterIP
ports:
- port: 8080
protocol: TCP
Expand Down