Skip to content

Commit

Permalink
23.01.1 version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
torirevilla authored Mar 17, 2023
1 parent fb8b4da commit c657991
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 @@ -40,7 +40,7 @@ const (
OrchestratorName = "trident"
OrchestratorClientName = OrchestratorName + "ctl"
OrchestratorAPIVersion = "1"
DefaultOrchestratorVersion = "23.01.0"
DefaultOrchestratorVersion = "23.01.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 @@ -450,7 +450,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:23.01.0
image: docker.io/netapp/trident-operator:23.01.1
imagePullPolicy: IfNotPresent
name: trident-operator
nodeSelector:
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 @@ -453,7 +453,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:23.01.0
image: docker.io/netapp/trident-operator:23.01.1
imagePullPolicy: IfNotPresent
name: trident-operator
nodeSelector:
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:23.01.0
tridentImage: netapp/trident:23.01.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:23.01.0
image: docker.io/netapp/trident-operator:23.01.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 @@
23.01.0
23.01.1
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: 23.01.0
appVersion: 23.01.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.21.8"
labels[TridentVersionLabelKey] = "v23.01.0"
labels[TridentVersionLabelKey] = "v23.01.1"

return labels
}
Expand Down

0 comments on commit c657991

Please sign in to comment.