Skip to content

Commit

Permalink
Fix version number
Browse files Browse the repository at this point in the history
  • Loading branch information
roivaz committed Oct 20, 2021
1 parent b7ab920 commit ba9946c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# To re-generate a bundle for another specific version without changing the standard setup, you can:
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
VERSION ?= 0.9.0-alpha1
VERSION ?= 0.9.0-alpha.1

# CHANNELS define the bundle channels used in the bundle.
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")
Expand Down
13 changes: 9 additions & 4 deletions bundle/manifests/marin3r.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/3scale-ops/marin3r
support: Red Hat, Inc.
name: marin3r.v0.9.0-alpha1
name: marin3r.v0.9.0-alpha.1
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -677,7 +677,12 @@ spec:
- --leader-elect
command:
- /manager
image: quay.io/3scale/marin3r:v0.9.0-alpha1
env:
- name: WATCH_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/3scale/marin3r:v0.9.0-alpha.1
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -733,7 +738,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/3scale/marin3r:v0.9.0-alpha1
image: quay.io/3scale/marin3r:v0.9.0-alpha.1
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1023,7 +1028,7 @@ spec:
maturity: alpha
provider:
name: Red Hat
version: 0.9.0-alpha1
version: 0.9.0-alpha.1
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/3scale/marin3r
newTag: v0.9.0-alpha1
newTag: v0.9.0-alpha.1

patchesStrategicMerge:
- custom/manager_patch.yaml
2 changes: 1 addition & 1 deletion config/webhook/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/3scale/marin3r
newTag: v0.9.0-alpha1
newTag: v0.9.0-alpha.1

# [CUSTOM: pod mutating webhook config] This patch adds a label selector to the MutatingWebhookConfig
patchesStrategicMerge:
Expand Down
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package version

const (
version string = "v0.9.0-alpha1"
version string = "v0.9.0-alpha.1"
)

// Current returns the current marin3r operator version
Expand Down

0 comments on commit ba9946c

Please sign in to comment.