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

[ci] using 'operator' as image name rather than 'debezium-operator' i… #5

Merged
merged 1 commit into from
Jun 9, 2023
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
16 changes: 8 additions & 8 deletions k8/kubernetes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,14 +135,14 @@ metadata:
name: debezium-operator
spec:
ports:
- name: https
port: 443
protocol: TCP
targetPort: 8443
- name: http
port: 80
protocol: TCP
targetPort: 8080
- name: https
port: 443
protocol: TCP
targetPort: 8443
selector:
app.kubernetes.io/name: debezium-operator
type: ClusterIP
Expand Down Expand Up @@ -171,7 +171,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
image: quay.io/debezium/debezium-operator:nightly
image: quay.io/debezium/operator:nightly
imagePullPolicy: Always
livenessProbe:
failureThreshold: 3
Expand All @@ -185,12 +185,12 @@ spec:
timeoutSeconds: 10
name: debezium-operator
ports:
- containerPort: 8080
name: http
protocol: TCP
- containerPort: 8443
name: https
protocol: TCP
- containerPort: 8080
name: http
protocol: TCP
readinessProbe:
failureThreshold: 3
httpGet:
Expand Down
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@
<quarkus.operator-sdk.bundle.channels>alpha</quarkus.operator-sdk.bundle.channels>
<quarkus.container-image.registry>quay.io</quarkus.container-image.registry>
<quarkus.container-image.group>debezium</quarkus.container-image.group>
<quarkus.container-image.name>operator</quarkus.container-image.name>
<quarkus.container-image.tag>nightly</quarkus.container-image.tag>
<quarkus.kubernetes.name>debezium-operator</quarkus.kubernetes.name>
<!-- Formatting configuration -->
<format.imports.source.compliance>17</format.imports.source.compliance>
</properties>
Expand Down