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

change used port for apiservice to 443 to avoid issues on gcp, operator 3.90.0, chart 1.6.0 #93

Merged
merged 1 commit into from
Aug 5, 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
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