Skip to content

Commit

Permalink
Updates version to 24.06.1
Browse files Browse the repository at this point in the history
  • Loading branch information
reederc42 committed Jul 27, 2024
1 parent 716a153 commit d6ec7b9
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const (
OrchestratorName = "trident"
OrchestratorClientName = OrchestratorName + "ctl"
OrchestratorAPIVersion = "1"
DefaultOrchestratorVersion = "24.06.0"
DefaultOrchestratorVersion = "24.06.1"
PersistentStoreBootstrapAttempts = 30
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
PersistentStoreTimeout = 10 * time.Second
Expand Down
2 changes: 1 addition & 1 deletion deploy/bundle_post_1_25.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:24.06.0
image: docker.io/netapp/trident-operator:24.06.1
imagePullPolicy: IfNotPresent
name: trident-operator
resources:
Expand Down
2 changes: 1 addition & 1 deletion deploy/bundle_pre_1_25.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:24.06.0
image: docker.io/netapp/trident-operator:24.06.1
imagePullPolicy: IfNotPresent
name: trident-operator
resources:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ metadata:
spec:
debug: true
namespace: trident
tridentImage: netapp/trident:24.06.0
tridentImage: netapp/trident:24.06.1
imagePullSecrets:
- thisisasecret
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
serviceAccountName: trident-operator
containers:
- name: trident-operator
image: docker.io/netapp/trident-operator:24.06.0
image: docker.io/netapp/trident-operator:24.06.1
command:
- "/trident-operator"
- "--debug"
Expand Down
2 changes: 1 addition & 1 deletion hack/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.06.0
24.06.1
4 changes: 2 additions & 2 deletions helm/trident-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: trident-operator
version: 100.2406.0 # Some services require a semver here: "100.<CalVer>"
version: 100.2406.1 # Some services require a semver here: "100.<CalVer>"
kubeVersion: ">= 1.24.0-0"
description: "A Helm chart for deploying NetApp's Trident CSI storage provisioner using the Trident Operator."
type: application
Expand All @@ -11,4 +11,4 @@ icon: "https://raw.githubusercontent.com/NetApp/trident/master/logo/trident.png"
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 24.06.0
appVersion: 24.06.1
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func createTestLabels() map[string]string {
labels := make(map[string]string)
labels[appLabelKey] = appLabelValue
labels[K8sVersionLabelKey] = "v1.28.8"
labels[TridentVersionLabelKey] = "v24.06.0"
labels[TridentVersionLabelKey] = "v24.06.1"

return labels
}
Expand Down

0 comments on commit d6ec7b9

Please sign in to comment.