Skip to content

Commit

Permalink
chore(frontier): setup service port for admin-ui and fix ingress (#110)
Browse files Browse the repository at this point in the history
* chore: remove local chart

* chore: update chart version in lock file

* chore: disable ingress and empty annotations

* chore: add service port for admin-ui

* chore: update chart version
  • Loading branch information
rsbh committed Jan 31, 2024
1 parent 67ff20f commit df1c032
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 15 deletions.
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

0 comments on commit df1c032

Please sign in to comment.