Skip to content

Commit

Permalink
v0.4.0 with limitador-server:v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsnaps committed Dec 16, 2022
1 parent e04018b commit 2fa61f3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 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.0.0
VERSION ?= 0.4.0

# 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
12 changes: 6 additions & 6 deletions bundle/manifests/limitador-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ metadata:
]
capabilities: Basic Install
categories: Integration & Delivery
containerImage: quay.io/kuadrant/limitador-operator:latest
containerImage: quay.io/kuadrant/limitador-operator:v0.4.0
operators.operatorframework.io/builder: operator-sdk-v1.22.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/Kuadrant/limitador-operator
support: kuadrant
name: limitador-operator.v0.0.0
name: limitador-operator.v0.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -142,8 +142,8 @@ spec:
- /manager
env:
- name: RELATED_IMAGE_LIMITADOR
value: quay.io/kuadrant/limitador:latest
image: quay.io/kuadrant/limitador-operator:latest
value: quay.io/kuadrant/limitador:v1.0.0
image: quay.io/kuadrant/limitador-operator:v0.4.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -228,6 +228,6 @@ spec:
name: Red Hat
url: https://github.com/Kuadrant/limitador-operator
relatedImages:
- image: quay.io/kuadrant/limitador:latest
- image: quay.io/kuadrant/limitador:v1.0.0
name: limitador
version: 0.0.0
version: 0.4.0
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/kuadrant/limitador-operator
newTag: latest
newTag: v0.4.0
2 changes: 1 addition & 1 deletion config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- --leader-elect
env:
- name: RELATED_IMAGE_LIMITADOR
value: "quay.io/kuadrant/limitador:latest"
value: "quay.io/kuadrant/limitador:v1.0.0"
image: controller:latest
name: manager
securityContext:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ metadata:
alm-examples: '[]'
capabilities: Basic Install
categories: Integration & Delivery
containerImage: quay.io/kuadrant/limitador-operator:latest
containerImage: quay.io/kuadrant/limitador-operator:v0.4.0
operators.operatorframework.io/builder: operator-sdk-v1.9.0
operators.operatorframework.io/project_layout: unknown
repository: https://github.com/Kuadrant/limitador-operator
support: kuadrant
name: limitador-operator.v0.0.0
name: limitador-operator.v0.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -54,4 +54,4 @@ spec:
provider:
name: Red Hat
url: https://github.com/Kuadrant/limitador-operator
version: 0.0.0
version: 0.4.0
2 changes: 1 addition & 1 deletion pkg/limitador/image.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
)

var (
defaultImageVersion = fmt.Sprintf("%s:%s", LimitadorRepository, "latest")
defaultImageVersion = fmt.Sprintf("%s:%s", LimitadorRepository, "v1.0.0")
)

func GetLimitadorImageVersion() string {
Expand Down
2 changes: 1 addition & 1 deletion pkg/limitador/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (
)

func TestLimitadorDefaulImage(t *testing.T) {
assert.Equal(t, GetLimitadorImageVersion(), "quay.io/kuadrant/limitador:latest")
assert.Equal(t, GetLimitadorImageVersion(), "quay.io/kuadrant/limitador:v1.0.0")
}

0 comments on commit 2fa61f3

Please sign in to comment.