Skip to content

Commit

Permalink
Bump version to 22.04.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Kerr authored Apr 4, 2022
1 parent 89bd2b9 commit 6bbecec
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const (
OrchestratorName = "trident"
OrchestratorClientName = OrchestratorName + "ctl"
OrchestratorAPIVersion = "1"
DefaultOrchestratorVersion = "22.01.0"
DefaultOrchestratorVersion = "22.04.0"
PersistentStoreBootstrapAttempts = 30
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
PersistentStoreTimeout = 10 * time.Second
Expand Down
2 changes: 1 addition & 1 deletion deploy/bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: netapp/trident-operator:22.01.0
image: netapp/trident-operator:22.04.0
imagePullPolicy: IfNotPresent
name: trident-operator
nodeSelector:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/tridentorchestrator_cr_customimage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ metadata:
spec:
debug: true
namespace: trident
tridentImage: localhost:5000/netapp/trident:22.01
tridentImage: localhost:5000/netapp/trident:22.04
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:22.01.0
tridentImage: netapp/trident:22.04.0
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: netapp/trident-operator:22.01.0
image: netapp/trident-operator:22.04.0
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 @@
22.01.0
22.04.0
2 changes: 1 addition & 1 deletion helm/trident-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 22.01.0
appVersion: 22.04.0
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func createTestLabels() map[string]string {
labels := make(map[string]string)
labels[appLabelKey] = appLabelValue
labels[K8sVersionLabelKey] = "v1.21.8"
labels[TridentVersionLabelKey] = "v22.01.0"
labels[TridentVersionLabelKey] = "v22.04.0"

return labels
}
Expand Down

0 comments on commit 6bbecec

Please sign in to comment.