Skip to content

Commit

Permalink
Merge pull request #63 from dimitraz/bump-0.3.0
Browse files Browse the repository at this point in the history
bump version to 0.3.0
  • Loading branch information
openshift-merge-robot committed Nov 27, 2019
2 parents 250f22a + 73a6522 commit 6729f80
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 14 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
IMAGE_REG=quay.io
IMAGE_ORG=integreatly
IMAGE_NAME=cloud-resource-operator
IMAGE=quay.io/integreatly/cloud-resource-operator:0.2.0
IMAGE=quay.io/integreatly/cloud-resource-operator:0.3.0
MANIFEST_NAME=cloud-resources
NAMESPACE=cloud-resource-operator
VERSION=0.2.0
VERSION=0.3.0
COMPILE_TARGET=./tmp/_output/bin/$(IMAGE_NAME)
OPERATOR_SDK_VERSION=0.12.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ metadata:
capabilities: Basic Install
categories: Integration & Delivery
description: Operator to provision cloud provider resources in an abstracted manner
containerImage: quay.io/integreatly/cloud-resource-operator:0.2.0
containerImage: quay.io/integreatly/cloud-resource-operator:0.3.0
support: Integreatly
createdAt: 2019-10-07 12:34:56
certified: 'false'
name: cloud-resources.v0.2.0
name: cloud-resources.v0.3.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -115,7 +115,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: cloud-resource-operator
image: quay.io/integreatly/cloud-resource-operator:0.2.0
image: quay.io/integreatly/cloud-resource-operator:0.3.0
imagePullPolicy: Always
name: cloud-resource-operator
resources: {}
Expand Down Expand Up @@ -236,4 +236,4 @@ spec:
maturity: alpha
provider:
name: Integreatly
version: 0.2.0
version: 0.3.0
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels:
- currentCSV: cloud-resources.v0.2.0
- currentCSV: cloud-resources.v0.3.0
name: integreatly
defaultChannel: integreatly
packageName: cloud-resources
5 changes: 3 additions & 2 deletions pkg/providers/openshift/provider_postgres.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import (
"context"
"encoding/json"
"fmt"
types2 "github.com/integr8ly/cloud-resource-operator/pkg/apis/integreatly/v1alpha1/types"
"strings"
"time"

types2 "github.com/integr8ly/cloud-resource-operator/pkg/apis/integreatly/v1alpha1/types"

"k8s.io/client-go/kubernetes"

"k8s.io/apimachinery/pkg/types"
Expand Down Expand Up @@ -443,7 +444,7 @@ func buildDefaultPostgresPodContainers(ps *v1alpha1.Postgres) []v1.Container {
return []v1.Container{
{
Name: ps.Name,
Image: "registry.redhat.io/rhscl/postgresql-96-rhel7",
Image: "registry.redhat.io/rhscl/postgresql-10-rhel7",
Ports: []v1.ContainerPort{
{
ContainerPort: int32(defaultPostgresPort),
Expand Down
9 changes: 5 additions & 4 deletions pkg/providers/openshift/provider_redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ import (
"context"
"encoding/json"
"fmt"
types2 "github.com/integr8ly/cloud-resource-operator/pkg/apis/integreatly/v1alpha1/types"
"strings"
"time"

types2 "github.com/integr8ly/cloud-resource-operator/pkg/apis/integreatly/v1alpha1/types"

controllerruntime "sigs.k8s.io/controller-runtime"

"github.com/sirupsen/logrus"
Expand Down Expand Up @@ -329,7 +330,7 @@ func buildDefaultRedisDeployment(r *v1alpha1.Redis) *appsv1.Deployment {
},
ObjectMeta: metav1.ObjectMeta{
Labels: map[string]string{
"deployment": redisDCSelectorName,
"deployment": r.Name,
},
},
},
Expand All @@ -338,7 +339,7 @@ func buildDefaultRedisDeployment(r *v1alpha1.Redis) *appsv1.Deployment {
},
Selector: &metav1.LabelSelector{
MatchLabels: map[string]string{
"deployment": redisDCSelectorName,
"deployment": r.Name,
},
},
Replicas: int32Ptr(1),
Expand Down Expand Up @@ -457,7 +458,7 @@ func buildDefaultRedisService(r *v1alpha1.Redis) *apiv1.Service {
},
},
Selector: map[string]string{
"deployment": redisDCSelectorName,
"deployment": r.Name,
},
},
}
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package version

var (
Version = "0.2.0"
Version = "0.3.0"
)

0 comments on commit 6729f80

Please sign in to comment.