Skip to content

Commit

Permalink
change used port for apiservice to 443 to avoid issues on gcp, bump o…
Browse files Browse the repository at this point in the history
…perator version to 3.90.0
  • Loading branch information
aviramha committed Aug 5, 2024
1 parent cc7fee8 commit c28b272
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions mirrord-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ 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: 1.5.7
version: 1.6.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "3.89.0"
appVersion: "3.90.0"
2 changes: 1 addition & 1 deletion mirrord-operator/templates/api-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ spec:
service:
name: {{ .Values.service.name }}
namespace: {{ .Values.namespace }}
port: 3000
port: 443
version: v1
versionPriority: 15
8 changes: 4 additions & 4 deletions mirrord-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- name: RUST_LOG
value: mirrord=info,operator=info
- name: OPERATOR_ADDR
value: 0.0.0.0:3000
value: 0.0.0.0:443
- name: OPERATOR_NAMESPACE
value: {{ .Values.namespace }}
- name: OPERATOR_SERVICE_NAME
Expand Down Expand Up @@ -88,17 +88,17 @@ spec:
livenessProbe:
httpGet:
path: /health
port: 3000
port: 443
scheme: HTTPS
periodSeconds: 5
name: mirrord-operator
ports:
- containerPort: 3000
- containerPort: 443
name: https
readinessProbe:
httpGet:
path: /health
port: 3000
port: 443
scheme: HTTPS
periodSeconds: 5
resources:
Expand Down
2 changes: 1 addition & 1 deletion mirrord-operator/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ metadata:
spec:
ports:
- name: https
port: 3000
port: 443
targetPort: https
selector:
app: mirrord-operator
Expand Down

0 comments on commit c28b272

Please sign in to comment.