Skip to content

Commit

Permalink
[operator] bump operator base image to 1.36.0 (#857)
Browse files Browse the repository at this point in the history
* [operator] bump operator base image to 1.36.0

It is easier now to bump to the upstream image because the upstream image doesn't have collections; our Dockerfile installs the collections we want and that match downstream.

* operator changed its default metric bind port to 8443 (it was 8080). We need to explicitly set it back to 8080.
  • Loading branch information
jmazzitelli authored Dec 23, 2024
1 parent ae5f0fc commit 1acbf39
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ OPERATOR_QUAY_TAG ?= ${OPERATOR_QUAY_NAME}:${OPERATOR_CONTAINER_VERSION}
DORP ?= docker

# The version of the SDK this Makefile will download if needed, and the corresponding base image
OPERATOR_SDK_VERSION ?= 1.35.0
OPERATOR_SDK_VERSION ?= 1.36.0
OPERATOR_BASE_IMAGE_VERSION ?= v${OPERATOR_SDK_VERSION}
OPERATOR_BASE_IMAGE_REPO ?= quay.io/operator-framework/ansible-operator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,7 @@ spec:
- "--leader-election-id=kiali-operator"
- "--watches-file=./$(WATCHES_FILE)"
- "--health-probe-bind-address=:6789"
- "--metrics-bind-address=:8080"
terminationMessagePolicy: FallbackToLogsOnError
readinessProbe:
httpGet:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ spec:
- "--leader-election-id=kiali-operator"
- "--watches-file=./$(WATCHES_FILE)"
- "--health-probe-bind-address=:6789"
- "--metrics-bind-address=:8080"
terminationMessagePolicy: FallbackToLogsOnError
readinessProbe:
httpGet:
Expand Down

0 comments on commit 1acbf39

Please sign in to comment.