Skip to content

Commit

Permalink
chore(versions): use release branch for image tags (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
ebaron authored Oct 27, 2023
1 parent b7de47b commit 0d363a9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 9 deletions.
9 changes: 6 additions & 3 deletions charts/cryostat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
| `core` | Configuration for the core Cryostat application | |
| `core.image.repository` | Repository for the main Cryostat container image | `quay.io/cryostat/cryostat` |
| `core.image.pullPolicy` | Image pull policy for the main Cryostat container image | `Always` |
| `core.image.tag` | Tag for the main Cryostat container image | `latest` |
| `core.image.tag` | Tag for the main Cryostat container image | `2.4.0-snapshot` |
| `core.service.type` | Type of Service to create for the Cryostat application | `ClusterIP` |
| `core.service.httpPort` | Port number to expose on the Service for Cryostat's HTTP server | `8181` |
| `core.service.jmxPort` | Port number to expose on the Service for remote JMX connections to Cryostat | `9091` |
Expand All @@ -32,14 +32,15 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
| `core.securityContext` | Security Context for the Cryostat 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) | `{}` |
| `core.databaseSecretName` | Name of the secret to extract password for credentials database. | `""` |


### Grafana Container

| Name | Description | Value |
| ------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------- |
| `grafana` | Configuration for the customized Grafana instance for Cryostat | |
| `grafana.image.repository` | Repository for the Grafana container image | `quay.io/cryostat/cryostat-grafana-dashboard` |
| `grafana.image.pullPolicy` | Image pull policy for the Grafana container image | `Always` |
| `grafana.image.tag` | Tag for the Grafana container image | `latest` |
| `grafana.image.tag` | Tag for the Grafana container image | `cryostat-v2.4` |
| `grafana.service.type` | Type of Service to create for Grafana | `ClusterIP` |
| `grafana.service.port` | Port number to expose on the Service for Grafana's HTTP server | `3000` |
| `grafana.sslProxied` | Enables SSL Proxied Environment Variables, useful when you are offloading SSL/TLS at External Loadbalancer instead of Ingress | `false` |
Expand All @@ -59,17 +60,19 @@ A Helm chart for deploying [Cryostat](https://cryostat.io/) on Kubernetes and Op
| `grafana.resources` | Resource requests/limits for the Grafana container. See: [ResourceRequirements](https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#resources) | `{}` |
| `grafana.securityContext` | Security Context for the Grafana 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) | `{}` |


### JFR Data Source Container

| Name | Description | Value |
| ----------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------- |
| `datasource` | Configuration for the JFR Data Source component, which translates recording events into a format consumable by Grafana | |
| `datasource.image.repository` | Repository for the JFR Data Source container image | `quay.io/cryostat/jfr-datasource` |
| `datasource.image.pullPolicy` | Image pull policy for the JFR Data Source container image | `Always` |
| `datasource.image.tag` | Tag for the JFR Data Source container image | `latest` |
| `datasource.image.tag` | Tag for the JFR Data Source container image | `2.4.0-snapshot` |
| `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) | `{}` |
| `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) | `{}` |


### Other Parameters

| Name | Description | Value |
Expand Down
6 changes: 3 additions & 3 deletions charts/cryostat/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"tag": {
"type": "string",
"description": "Tag for the main Cryostat container image",
"default": "latest"
"default": "2.4.0-snapshot"
}
}
},
Expand Down Expand Up @@ -207,7 +207,7 @@
"tag": {
"type": "string",
"description": "Tag for the Grafana container image",
"default": "latest"
"default": "cryostat-v2.4"
}
}
},
Expand Down Expand Up @@ -408,7 +408,7 @@
"tag": {
"type": "string",
"description": "Tag for the JFR Data Source container image",
"default": "latest"
"default": "2.4.0-snapshot"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions charts/cryostat/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ core:
## @param core.image.pullPolicy Image pull policy for the main Cryostat container image
pullPolicy: Always
## @param core.image.tag Tag for the main Cryostat container image
tag: "latest"
tag: "2.4.0-snapshot"
service:
## @param core.service.type Type of Service to create for the Cryostat application
type: ClusterIP
Expand Down Expand Up @@ -72,7 +72,7 @@ grafana:
## @param grafana.image.pullPolicy Image pull policy for the Grafana container image
pullPolicy: Always
## @param grafana.image.tag Tag for the Grafana container image
tag: "latest"
tag: "cryostat-v2.4"
service:
## @param grafana.service.type Type of Service to create for Grafana
type: ClusterIP
Expand Down Expand Up @@ -133,7 +133,7 @@ datasource:
## @param datasource.image.pullPolicy Image pull policy for the JFR Data Source container image
pullPolicy: Always
## @param datasource.image.tag Tag for the JFR Data Source container image
tag: "latest"
tag: "2.4.0-snapshot"
## @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)
resources: {}
## @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)
Expand Down

0 comments on commit 0d363a9

Please sign in to comment.