Skip to content

Commit d41e0b0

Browse files
authored
chore(release): prepare 2.4.0 release (#100)
1 parent 54693bf commit d41e0b0

File tree

4 files changed

+22
-20
lines changed

4 files changed

+22
-20
lines changed

charts/cryostat/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ description: Securely manage JFR recordings for your containerized Java workload
44

55
type: application
66

7-
version: "0.4.0-dev"
7+
version: "0.4.0"
88

99
kubeVersion: ">= 1.19.0-0"
1010

11-
appVersion: "2.4.0-pre"
11+
appVersion: "2.4.0"
1212

1313
home: "https://cryostat.io"
1414

charts/cryostat/README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
99
| ---------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------- |
1010
| `core` | Configuration for the core Cryostat application | |
1111
| `core.image.repository` | Repository for the main Cryostat container image | `quay.io/cryostat/cryostat` |
12-
| `core.image.pullPolicy` | Image pull policy for the main Cryostat container image | `Always` |
13-
| `core.image.tag` | Tag for the main Cryostat container image | `2.4.0-snapshot` |
12+
| `core.image.pullPolicy` | Image pull policy for the main Cryostat container image | `IfNotPresent` |
13+
| `core.image.tag` | Tag for the main Cryostat container image | `2.4.0` |
1414
| `core.service.type` | Type of Service to create for the Cryostat application | `ClusterIP` |
1515
| `core.service.httpPort` | Port number to expose on the Service for Cryostat's HTTP server | `8181` |
1616
| `core.service.jmxPort` | Port number to expose on the Service for remote JMX connections to Cryostat | `9091` |
@@ -39,8 +39,8 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
3939
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
4040
| `grafana` | Configuration for the customized Grafana instance for Cryostat | |
4141
| `grafana.image.repository` | Repository for the Grafana container image | `quay.io/cryostat/cryostat-grafana-dashboard` |
42-
| `grafana.image.pullPolicy` | Image pull policy for the Grafana container image | `Always` |
43-
| `grafana.image.tag` | Tag for the Grafana container image | `cryostat-v2.4` |
42+
| `grafana.image.pullPolicy` | Image pull policy for the Grafana container image | `IfNotPresent` |
43+
| `grafana.image.tag` | Tag for the Grafana container image | `2.4.0` |
4444
| `grafana.service.type` | Type of Service to create for Grafana | `ClusterIP` |
4545
| `grafana.service.port` | Port number to expose on the Service for Grafana's HTTP server | `3000` |
4646
| `grafana.sslProxied` | Enables SSL Proxied Environment Variables, useful when you are offloading SSL/TLS at External Loadbalancer instead of Ingress | `false` |
@@ -67,11 +67,12 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
6767
| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
6868
| `datasource` | Configuration for the JFR Data Source component, which translates recording events into a format consumable by Grafana | |
6969
| `datasource.image.repository` | Repository for the JFR Data Source container image | `quay.io/cryostat/jfr-datasource` |
70-
| `datasource.image.pullPolicy` | Image pull policy for the JFR Data Source container image | `Always` |
71-
| `datasource.image.tag` | Tag for the JFR Data Source container image | `2.4.0-snapshot` |
70+
| `datasource.image.pullPolicy` | Image pull policy for the JFR Data Source container image | `IfNotPresent` |
71+
| `datasource.image.tag` | Tag for the JFR Data Source container image | `2.4.0` |
7272
| `datasource.resources` | Resource requests/limits for the JFR Data Source container. See: [ResourceRequirements](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) | `{}` |
7373
| `datasource.securityContext` | Security Context for the JFR Data Source container. Defaults to meet "restricted" [Pod Security Standard](https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted). See: [SecurityContext](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1) | `{}` |
7474

75+
7576
### Authentication
7677

7778
| Name | Description | Value |
@@ -80,6 +81,7 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
8081
| `authentication.basicAuth.secretName` | Name of the Secret that contains the credentials within Cryostat's namespace **(Required if basicAuth is enabled)** | `""` |
8182
| `authentication.basicAuth.filename` | Key within Secret containing the properties file. The properties file should contain one user per line, with the syntax "user=passHex", where "user" is the username and "passHex" is the SHA-256 hash of the desired password **(Required if basicAuth is enabled)** | `""` |
8283

84+
8385
### Other Parameters
8486

8587
| Name | Description | Value |

charts/cryostat/values.schema.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"pullPolicy": {
1717
"type": "string",
1818
"description": "Image pull policy for the main Cryostat container image",
19-
"default": "Always"
19+
"default": "IfNotPresent"
2020
},
2121
"tag": {
2222
"type": "string",
2323
"description": "Tag for the main Cryostat container image",
24-
"default": "2.4.0-snapshot"
24+
"default": "2.4.0"
2525
}
2626
}
2727
},
@@ -202,12 +202,12 @@
202202
"pullPolicy": {
203203
"type": "string",
204204
"description": "Image pull policy for the Grafana container image",
205-
"default": "Always"
205+
"default": "IfNotPresent"
206206
},
207207
"tag": {
208208
"type": "string",
209209
"description": "Tag for the Grafana container image",
210-
"default": "cryostat-v2.4"
210+
"default": "2.4.0"
211211
}
212212
}
213213
},
@@ -403,12 +403,12 @@
403403
"pullPolicy": {
404404
"type": "string",
405405
"description": "Image pull policy for the JFR Data Source container image",
406-
"default": "Always"
406+
"default": "IfNotPresent"
407407
},
408408
"tag": {
409409
"type": "string",
410410
"description": "Tag for the JFR Data Source container image",
411-
"default": "2.4.0-snapshot"
411+
"default": "2.4.0"
412412
}
413413
}
414414
},

charts/cryostat/values.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ core:
55
## @param core.image.repository Repository for the main Cryostat container image
66
repository: "quay.io/cryostat/cryostat"
77
## @param core.image.pullPolicy Image pull policy for the main Cryostat container image
8-
pullPolicy: Always
8+
pullPolicy: IfNotPresent
99
## @param core.image.tag Tag for the main Cryostat container image
10-
tag: "2.4.0-snapshot"
10+
tag: "2.4.0"
1111
service:
1212
## @param core.service.type Type of Service to create for the Cryostat application
1313
type: ClusterIP
@@ -70,9 +70,9 @@ grafana:
7070
## @param grafana.image.repository Repository for the Grafana container image
7171
repository: "quay.io/cryostat/cryostat-grafana-dashboard"
7272
## @param grafana.image.pullPolicy Image pull policy for the Grafana container image
73-
pullPolicy: Always
73+
pullPolicy: IfNotPresent
7474
## @param grafana.image.tag Tag for the Grafana container image
75-
tag: "cryostat-v2.4"
75+
tag: "2.4.0"
7676
service:
7777
## @param grafana.service.type Type of Service to create for Grafana
7878
type: ClusterIP
@@ -131,9 +131,9 @@ datasource:
131131
## @param datasource.image.repository Repository for the JFR Data Source container image
132132
repository: "quay.io/cryostat/jfr-datasource"
133133
## @param datasource.image.pullPolicy Image pull policy for the JFR Data Source container image
134-
pullPolicy: Always
134+
pullPolicy: IfNotPresent
135135
## @param datasource.image.tag Tag for the JFR Data Source container image
136-
tag: "2.4.0-snapshot"
136+
tag: "2.4.0"
137137
## @param datasource.resources Resource requests/limits for the JFR Data Source container. See: [ResourceRequirements](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources)
138138
resources: {}
139139
## @param datasource.securityContext [object] Security Context for the JFR Data Source container. Defaults to meet "restricted" [Pod Security Standard](https://kubernetes.io/docs/concepts/security/pod-security-standards/#restricted). See: [SecurityContext](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#security-context-1)

0 commit comments

Comments
 (0)