Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.

Commit

Permalink
First bump for 0.17.1
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Wessendorf <[email protected]>
  • Loading branch information
matzew committed Oct 5, 2020
1 parent c380f6e commit 4f34104
Show file tree
Hide file tree
Showing 4 changed files with 109 additions and 30 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
packageName: knative-kafka-operator
channels:
- currentCSV: knative-kafka-operator.v0.16.0
- currentCSV: knative-kafka-operator.v0.17.1
name: alpha
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: knative-kafka-operator
# Replace this with the built image name
image: quay.io/openshift-knative/knative-kafka-operator:v0.16.0
image: quay.io/openshift-knative/knative-kafka-operator:v0.17.1
command:
- knative-kafka-operator
imagePullPolicy: Always
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: knative-eventing
labels:
contrib.eventing.knative.dev/release: devel
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: kafka-controller-manager
Expand Down Expand Up @@ -322,20 +315,20 @@ spec:
serviceAccountName: kafka-controller-manager
containers:
- name: manager
image: quay.io/openshift-knative/knative-eventing-sources-kafka-source-controller:v0.16.0
image: quay.io/openshift-knative/knative-eventing-sources-kafka-source-controller:v0.17.1
env:
- name: SYSTEM_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: METRICS_DOMAIN
value: knative.dev/eventing
value: knative.dev/sources
- name: CONFIG_OBSERVABILITY_NAME
value: config-observability
- name: CONFIG_LEADERELECTION_NAME
value: config-leader-election-kafka
- name: KAFKA_RA_IMAGE
value: quay.io/openshift-knative/knative-eventing-sources-kafka-source-adapter:v0.16.0
value: quay.io/openshift-knative/knative-eventing-sources-kafka-source-adapter:v0.17.1
volumeMounts:
resources:
requests:
Expand Down Expand Up @@ -363,7 +356,8 @@ metadata:
namespace: knative-eventing
spec:
ports:
- port: 443
- name: https-webhook
port: 443
targetPort: 8443
selector:
control-plane: kafka-controller-manager
Expand Down Expand Up @@ -725,7 +719,7 @@ rules:
resources:
- "mutatingwebhookconfigurations"
- "validatingwebhookconfigurations"
verbs:
verbs: &everything
- "get"
- "list"
- "create"
Expand All @@ -743,17 +737,22 @@ rules:
- "list"
- "watch"
- apiGroups:
- "apiextensions.k8s.io"
- "coordination.k8s.io"
resources:
- "customresourcedefinitions"
- "leases"
verbs: *everything
- apiGroups:
- "apiextensions.k8s.io"
resources:
- "customresourcedefinitions"
verbs:
- "get"
- "list"
- "create"
- "update"
- "delete"
- "patch"
- "watch"
- "get"
- "list"
- "create"
- "update"
- "delete"
- "patch"
- "watch"
---
apiVersion: v1
kind: ServiceAccount
Expand Down Expand Up @@ -858,6 +857,13 @@ spec:
- name: v1beta1
served: true
storage: false
conversion:
strategy: Webhook
conversionReviewVersions: ["v1beta1", "v1alpha1"]
webhookClientConfig:
service:
name: kafka-webhook
namespace: knative-eventing
---
apiVersion: v1
kind: ConfigMap
Expand Down Expand Up @@ -920,7 +926,7 @@ spec:
serviceAccountName: kafka-ch-controller
containers:
- name: controller
image: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-controller:v0.16.0
image: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-controller:v0.17.1
env:
- name: CONFIG_LOGGING_NAME
value: config-logging
Expand All @@ -933,7 +939,7 @@ spec:
- name: CONFIG_LEADERELECTION_NAME
value: config-leader-election-kafka
- name: DISPATCHER_IMAGE
value: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-dispatcher:v0.16.0
value: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-dispatcher:v0.17.1
ports:
- containerPort: 9090
name: metrics
Expand All @@ -945,6 +951,72 @@ spec:
configMap:
name: config-logging
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: kafka-ch-dispatcher
namespace: knative-eventing
labels:
eventing.knative.dev/release: devel
spec:
replicas: 0
selector:
matchLabels:
messaging.knative.dev/channel: kafka-channel
messaging.knative.dev/role: dispatcher
template:
metadata:
labels:
messaging.knative.dev/channel: kafka-channel
messaging.knative.dev/role: dispatcher
eventing.knative.dev/release: devel
spec:
containers:
- name: dispatcher
image: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-dispatcher:v0.17.1
env:
- name: SYSTEM_NAMESPACE
valueFrom:
fieldRef:
apiVersion: v1
fieldPath: metadata.namespace
- name: METRICS_DOMAIN
value: "knative.dev/eventing"
- name: CONFIG_LOGGING_NAME
value: "config-logging"
- name: CONFIG_LEADERELECTION_NAME
value: "config-leader-election-kafka"
ports:
- containerPort: 9090
name: metrics
protocol: TCP
volumeMounts:
- name: config-kafka
mountPath: /etc/config-kafka
serviceAccountName: kafka-ch-dispatcher
volumes:
- name: config-kafka
configMap:
name: config-kafka
---
apiVersion: v1
kind: Service
metadata:
labels:
messaging.knative.dev/channel: kafka-channel
messaging.knative.dev/role: dispatcher
name: kafka-ch-dispatcher
namespace: knative-eventing
spec:
ports:
- name: http-dispatcher
port: 80
protocol: TCP
targetPort: 8080
selector:
messaging.knative.dev/channel: kafka-channel
messaging.knative.dev/role: dispatcher
---
apiVersion: admissionregistration.k8s.io/v1beta1
kind: MutatingWebhookConfiguration
metadata:
Expand Down Expand Up @@ -1008,7 +1080,7 @@ spec:
containers:
- name: kafka-webhook
terminationMessagePolicy: FallbackToLogsOnError
image: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-webhook:v0.16.0
image: quay.io/openshift-knative/knative-eventing-sources-kafka-channel-webhook:v0.17.1
env:
- name: SYSTEM_NAMESPACE
valueFrom:
Expand All @@ -1020,9 +1092,15 @@ spec:
value: knative.dev/eventing
- name: WEBHOOK_NAME
value: kafka-webhook
- name: WEBHOOK_PORT
value: "8443"
ports:
- containerPort: 9090
name: metrics
- name: https-webhook
containerPort: 8443
- name: metrics
containerPort: 9090
- name: profiling
containerPort: 8008
readinessProbe: &probe
periodSeconds: 1
httpGet:
Expand All @@ -1031,4 +1109,5 @@ spec:
httpHeaders:
- name: k-kubelet-probe
value: "webhook"
livenessProbe: *probe
livenessProbe: *probe
terminationGracePeriodSeconds: 300
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.16.0"
Version = "0.17.1"
)

0 comments on commit 4f34104

Please sign in to comment.