Skip to content

Commit

Permalink
Merge pull request #118 from 3scale-ops/fix/backend-hpa
Browse files Browse the repository at this point in the history
fix/backend-hpa
  • Loading branch information
3scale-robot authored Jul 9, 2021
2 parents f20946e + ddf5c26 commit 420433d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
SHELL:=/bin/bash
# Current Operator version
VERSION ?= 0.10.3
VERSION ?= 0.10.4
# Default catalog image
CATALOG_IMG ?= quay.io/3scaleops/saas-operator-bundle:catalog
# Default bundle image tag
Expand Down
6 changes: 3 additions & 3 deletions bundle/manifests/saas-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/3scale/saas-operator
support: Red Hat
name: saas-operator.v0.10.3
name: saas-operator.v0.10.4
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -3053,7 +3053,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.annotations['olm.targetNamespaces']
image: quay.io/3scale/saas-operator:0.10.3
image: quay.io/3scale/saas-operator:0.10.4
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -3440,4 +3440,4 @@ spec:
provider:
name: Red Hat
url: https://www.3scale.net/
version: 0.10.3
version: 0.10.4
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: quay.io/3scale/saas-operator
newTag: 0.10.3
newTag: 0.10.4
4 changes: 2 additions & 2 deletions controllers/backend_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,13 @@ func (r *BackendReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
},
{
Template: gen.Worker.Deployment(),
HasHPA: !instance.Spec.Listener.HPA.IsDeactivated(),
HasHPA: !instance.Spec.Worker.HPA.IsDeactivated(),
//Worker only depends on SystemEventsHookSecretDefinition and ErrorMonitoringSecretDefinition
RolloutTriggers: []basereconciler.RolloutTrigger{triggers[0], triggers[2]},
},
{
Template: gen.Cron.Deployment(),
HasHPA: !instance.Spec.Listener.HPA.IsDeactivated(),
HasHPA: false,
// Cron only depends on ErrorMonitoringSecretDefinition
RolloutTriggers: []basereconciler.RolloutTrigger{triggers[2]},
},
Expand Down
16 changes: 8 additions & 8 deletions pkg/assets/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.10.3"
version string = "v0.10.4"
)

// Current returns the current marin3r operator version
Expand Down

0 comments on commit 420433d

Please sign in to comment.