diff --git a/mirrord-operator/Chart.yaml b/mirrord-operator/Chart.yaml index 96b49dd..39d9eb9 100644 --- a/mirrord-operator/Chart.yaml +++ b/mirrord-operator/Chart.yaml @@ -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" diff --git a/mirrord-operator/templates/api-service.yaml b/mirrord-operator/templates/api-service.yaml index b45d279..9067b25 100644 --- a/mirrord-operator/templates/api-service.yaml +++ b/mirrord-operator/templates/api-service.yaml @@ -11,6 +11,6 @@ spec: service: name: {{ .Values.service.name }} namespace: {{ .Values.namespace }} - port: 3000 + port: 443 version: v1 versionPriority: 15 diff --git a/mirrord-operator/templates/deployment.yaml b/mirrord-operator/templates/deployment.yaml index b01a3ac..3b4fcc8 100644 --- a/mirrord-operator/templates/deployment.yaml +++ b/mirrord-operator/templates/deployment.yaml @@ -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 @@ -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: diff --git a/mirrord-operator/templates/service.yaml b/mirrord-operator/templates/service.yaml index ad0981d..5421b90 100644 --- a/mirrord-operator/templates/service.yaml +++ b/mirrord-operator/templates/service.yaml @@ -9,7 +9,7 @@ metadata: spec: ports: - name: https - port: 3000 + port: 443 targetPort: https selector: app: mirrord-operator