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

chore(frontier): setup service port for admin-ui and fix ingress #110

Merged
merged 5 commits into from
Jan 31, 2024
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
8 changes: 4 additions & 4 deletions stable/frontier/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: app
repository: https://raystack.github.io/charts/
version: 0.5.2
version: 0.5.3
- name: app
repository: https://raystack.github.io/charts/
version: 0.5.2
digest: sha256:cbe2d10a86face73aaa7cd1d6eb72f573399106e50c03d209322e44b556b6dd7
generated: "2023-07-31T20:24:51.749481+05:30"
version: 0.5.3
digest: sha256:d152b4844c222ecff12e0cfbe2d404241f66f2afa2f212d063df6b61584eddf0
generated: "2024-01-31T12:19:30.82397+05:30"
2 changes: 1 addition & 1 deletion stable/frontier/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.6
version: 0.1.7

dependencies:
- name: app
Expand Down
Binary file removed stable/frontier/charts/app-0.5.2.tgz
Binary file not shown.
22 changes: 12 additions & 10 deletions stable/frontier/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,14 @@ frontier-app:
targetPort: 8081
protocol: TCP
name: grpc
- port: 3000
targetPort: 3000
protocol: TCP
name: admin-ui
annotations: {}
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: contour
enabled: false
annotations: {}
hosts:
- host: frontier.example.com
paths:
Expand Down Expand Up @@ -75,10 +78,10 @@ spicedb:
SPICEDB_GRPC_SHUTDOWN_GRACE_PERIOD: "5s"
container:
ports:
- containerPort: 50051
protocol: TCP
- containerPort: 8443
protocol: TCP
- containerPort: 50051
protocol: TCP
- containerPort: 8443
protocol: TCP
livenessProbe:
exec:
command: ["grpc_health_probe", "-v", "-addr=localhost:50051"]
Expand All @@ -99,9 +102,8 @@ spicedb:
protocol: TCP
annotations: {}
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: contour
enabled: false
annotations: {}
hosts:
- host: spicedb.example.com
paths:
Expand Down
Loading