Skip to content

Commit 3d1defc

Browse files
authored
Add 0.2.0 release to the main branch and bump version (#100)
Signed-off-by: Kate Stanley <[email protected]>
1 parent 2a6fc88 commit 3d1defc

File tree

13 files changed

+61
-35
lines changed

13 files changed

+61
-35
lines changed

.checksums

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
77
# development version of the helm charts in ./packaging/helm-charts
88
### IMPORTANT ###
9-
HELM_CHART_CHECKSUM="23edfc4a6e4bdf8363209448ab754258f2929958 -"
9+
HELM_CHART_CHECKSUM="6a85e6d48a782e80e5156a93af83e97fb7e86c0d -"
1010

1111
### IMPORTANT ###
1212
# if the below line has changed, this means the ./install directory has changed
1313
# the checksum and ./install directory should only be modified on official releases as part of a release
1414
# if this checksum has changed as part of any non-release specific changes, please apply your changes to the
1515
# development version of the helm charts in ./packaging/install
1616
### IMPORTANT ###
17-
INSTALL_CHECKSUM="285387a2e673598b6624805ac200d1e14d17f79d -"
17+
INSTALL_CHECKSUM="082b0a11d3a4f928e8d33de5bc41adcc6c58e592 -"
1818

1919
### IMPORTANT ###
2020
# if the below line has changed, this means the ./examples directory has changed

api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>io.strimzi.access-operator</groupId>
99
<artifactId>kafka-access-operator</artifactId>
10-
<version>0.2.0-SNAPSHOT</version>
10+
<version>0.3.0-SNAPSHOT</version>
1111
</parent>
1212
<name>Strimzi Access Operator - API</name>
1313
<artifactId>api</artifactId>

helm-charts/helm3/strimzi-access-operator/Chart.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ keywords:
1616
home: https://strimzi.io/
1717
sources:
1818
- https://github.com/strimzi/kafka-access-operator
19+
maintainers:
20+
- name: Strimzi Project Maintainers
21+
22+
url: https://github.com/strimzi/governance

helm-charts/helm3/strimzi-access-operator/README.md

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,21 +36,23 @@ The command removes all the Kubernetes components associated with the Strimzi Ac
3636

3737
### Configuration
3838

39-
The following table lists some available configurable parameters of the Strimzi chart and their default values.
40-
For a full list of supported options, check the [`values.yaml` file](./values.yaml).
41-
42-
| Parameter | Description | Default |
43-
|--------------------------------------|-----------------------------------------------------------|----------|
44-
| `image.tag` | Override default Drain Cleaner image tag | `0.1.1` |
45-
| `image.imagePullPolicy` | Image pull policy for all pods deployed by Drain Cleaner | `nil` |
46-
| `resources.limits.cpu` | Configures the CPU limit for the Access Operator Pod | `256Mi` |
47-
| `resources.limits.memory` | Configures the memory limit for the Access Operator Pod | `500m` |
48-
| `resources.requests.cpu` | Configures the CPU request for the Access Operator Pod | `256Mi` |
49-
| `resources.requests.memory` | Configures the memory request for the Access Operator Pod | `100m` |
50-
| `livenessProbe.initialDelaySeconds` | Liveness probe initial delay (in seconds) | `10` |
51-
| `livenessProbe.periodSeconds` | Liveness probe period (in seconds) | `30` |
52-
| `readinessProbe.initialDelaySeconds` | Readiness probe initial delay (in seconds) | `10` |
53-
| `readinessProbe.periodSeconds` | Readiness probe period (in seconds) | `30` |
39+
The following table lists the available configurable parameters of the Strimzi chart and their default values as specified in the [`values.yaml` file](./values.yaml).
40+
41+
| Parameter | Description | Default |
42+
|--------------------------------------|------------------------------------------------------------|-----------|
43+
| `image.registry` | Override default Access Operator image registry | `quay.io` |
44+
| `image.repository` | Override default Access Operator image repository | `strimzi` |
45+
| `image.tag` | Override default Access Operator image tag | `0.2.0` |
46+
| `image.imagePullSecrets` | List of container registry pull secrets | `[]` |
47+
| `image.imagePullPolicy` | Image pull policy for all pods deployed by Access Operator | `nil` |
48+
| `resources.limits.cpu` | Configures the CPU limit for the Access Operator Pod | `256Mi` |
49+
| `resources.limits.memory` | Configures the memory limit for the Access Operator Pod | `500m` |
50+
| `resources.requests.cpu` | Configures the CPU request for the Access Operator Pod | `256Mi` |
51+
| `resources.requests.memory` | Configures the memory request for the Access Operator Pod | `100m` |
52+
| `livenessProbe.initialDelaySeconds` | Liveness probe initial delay (in seconds) | `10` |
53+
| `livenessProbe.periodSeconds` | Liveness probe period (in seconds) | `30` |
54+
| `readinessProbe.initialDelaySeconds` | Readiness probe initial delay (in seconds) | `10` |
55+
| `readinessProbe.periodSeconds` | Readiness probe period (in seconds) | `30` |
5456

5557
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example,
5658

helm-charts/helm3/strimzi-access-operator/crds/040-Crd-kafkaaccess.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ spec:
99
group: access.strimzi.io
1010
names:
1111
kind: KafkaAccess
12+
categories:
13+
- strimzi
1214
plural: kafkaaccesses
1315
shortNames:
1416
- ka
@@ -28,6 +30,10 @@ spec:
2830
name: User
2931
priority: 0
3032
type: string
33+
- jsonPath: .status.conditions[?(@.type=="Ready")].status
34+
name: Ready
35+
priority: 0
36+
type: string
3137
name: v1alpha1
3238
schema:
3339
openAPIV3Schema:
@@ -45,6 +51,8 @@ spec:
4551
required:
4652
- name
4753
type: object
54+
secretName:
55+
type: string
4856
user:
4957
properties:
5058
apiGroup:
@@ -73,10 +81,6 @@ spec:
7381
conditions:
7482
items:
7583
properties:
76-
additionalProperties:
77-
additionalProperties:
78-
type: object
79-
type: object
8084
lastTransitionTime:
8185
type: string
8286
message:
@@ -88,6 +92,7 @@ spec:
8892
type:
8993
type: string
9094
type: object
95+
x-kubernetes-preserve-unknown-fields: true
9196
type: array
9297
observedGeneration:
9398
type: integer

helm-charts/helm3/strimzi-access-operator/templates/050-Deployment.yaml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,16 +21,22 @@ spec:
2121
strimzi.io/kind: access-operator
2222
spec:
2323
serviceAccountName: strimzi-access-operator
24+
{{- if .Values.image.imagePullSecrets }}
25+
imagePullSecrets:
26+
{{- with .Values.image.imagePullSecrets }}
27+
{{- toYaml . | nindent 8 }}
28+
{{- end }}
29+
{{- end }}
2430
volumes:
2531
- name: strimzi-tmp
2632
emptyDir:
2733
medium: Memory
2834
sizeLimit: 1Mi
2935
containers:
3036
- name: access-operator
31-
image: quay.io/strimzi/access-operator:{{ .Values.image.tag }}
32-
{{- if .Values.image.pullPolicy }}
33-
imagePullPolicy: {{ .Values.image.pullPolicy | quote }}
37+
image: {{ .Values.image.registry }}/{{ .Values.image.repository}}/{{ .Values.image.name }}:{{ .Values.image.tag }}
38+
{{- with .Values.image.pullPolicy }}
39+
imagePullPolicy: {{ . }}
3440
{{- end }}
3541
ports:
3642
- containerPort: 8080

helm-charts/helm3/strimzi-access-operator/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
image:
2-
tag: 0.1.1
2+
registry: quay.io
3+
repository: strimzi
4+
name: access-operator
5+
tag: 0.2.0
6+
imagePullSecrets: []
37

48
resources:
59
limits:

install/040-Crd-kafkaaccess.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ spec:
99
group: access.strimzi.io
1010
names:
1111
kind: KafkaAccess
12+
categories:
13+
- strimzi
1214
plural: kafkaaccesses
1315
shortNames:
1416
- ka
@@ -28,6 +30,10 @@ spec:
2830
name: User
2931
priority: 0
3032
type: string
33+
- jsonPath: .status.conditions[?(@.type=="Ready")].status
34+
name: Ready
35+
priority: 0
36+
type: string
3137
name: v1alpha1
3238
schema:
3339
openAPIV3Schema:
@@ -45,6 +51,8 @@ spec:
4551
required:
4652
- name
4753
type: object
54+
secretName:
55+
type: string
4856
user:
4957
properties:
5058
apiGroup:
@@ -73,10 +81,6 @@ spec:
7381
conditions:
7482
items:
7583
properties:
76-
additionalProperties:
77-
additionalProperties:
78-
type: object
79-
type: object
8084
lastTransitionTime:
8185
type: string
8286
message:
@@ -88,6 +92,7 @@ spec:
8892
type:
8993
type: string
9094
type: object
95+
x-kubernetes-preserve-unknown-fields: true
9196
type: array
9297
observedGeneration:
9398
type: integer

install/050-Deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ spec:
2727
sizeLimit: 1Mi
2828
containers:
2929
- name: access-operator
30-
image: quay.io/strimzi/access-operator:0.1.1
30+
image: quay.io/strimzi/access-operator:0.2.0
3131
ports:
3232
- containerPort: 8080
3333
name: http

operator/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.strimzi.access-operator</groupId>
88
<artifactId>kafka-access-operator</artifactId>
9-
<version>0.2.0-SNAPSHOT</version>
9+
<version>0.3.0-SNAPSHOT</version>
1010
</parent>
1111
<name>Strimzi Access Operator</name>
1212
<artifactId>operator</artifactId>

0 commit comments

Comments
 (0)