Skip to content

Commit fcdc3f6

Browse files
committed
Preparing for release
1 parent 605a5dd commit fcdc3f6

File tree

6 files changed

+11
-34
lines changed

6 files changed

+11
-34
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ buildtools/*
77
#EnvTest
88
testbin/*
99

10+
#Bundle
11+
bundle
12+
bundle.Dockerfile
13+
1014
# Binaries for programs and plugins
1115
*.exe
1216
*.exe~

Makefile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SHELL := /bin/bash
22
# Current Operator version
3-
VERSION ?= 0.0.7
3+
VERSION ?= latest
44
# Operator SDK
55
OPERATOR_SDK ?= operator-sdk
66
# YQ Version
@@ -18,7 +18,7 @@ else
1818
endif
1919
endif
2020
# Default bundle image tag
21-
BUNDLE_IMG ?= controller-bundle:$(VERSION)
21+
BUNDLE_IMG ?= quay.io/redhat-cop/group-sync-operator-bundle:$(VERSION)
2222
# Options for 'bundle-build'
2323
ifneq ($(origin CHANNELS), undefined)
2424
BUNDLE_CHANNELS := --channels=$(CHANNELS)
@@ -29,7 +29,7 @@ endif
2929
BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
3030

3131
# Image URL to use all building/pushing image targets
32-
IMG ?= controller:latest
32+
IMG ?= quay.io/redhat-cop/group-sync-operator:$(VERSION)
3333
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
3434
CRD_OPTIONS ?= "crd:trivialVersions=true,crdVersions=v1beta1"
3535

README.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,7 @@ oc new-project group-sync-operator
3838
```shell
3939
git clone https://github.com/redhat-cop/group-sync-operator.git
4040
cd group-sync-operator
41-
oc apply -f deploy/crds/redhatcop.redhat.io_groupsyncs_crd.yaml
42-
oc apply -n group-sync-operator -f deploy/service_account.yaml
43-
oc apply -n group-sync-operator -f deploy/clusterrole.yaml
44-
oc apply -n group-sync-operator -f deploy/clusterrole_binding.yaml
45-
oc apply -n group-sync-operator -f deploy/role.yaml
46-
oc apply -n group-sync-operator -f deploy/role_binding.yaml
47-
oc apply -n group-sync-operator -f deploy/operator.yaml
41+
make deploy
4842
```
4943

5044
## Authentication

bundle.Dockerfile

-15
This file was deleted.

config/default/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Adds namespace to all resources.
2-
namespace: group-sync-operator-system
2+
namespace: group-sync-operator
33

44
# Value of this field is prepended to the
55
# names of all resources, e.g. a deployment named

config/manifests/bases/group-sync-operator.clusterserviceversion.yaml

+2-8
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
annotations:
55
alm-examples: '[]'
66
capabilities: Basic Install
7-
operators.operatorframework.io/builder: operator-sdk-v1.1.0+git
7+
operators.operatorframework.io/builder: operator-sdk-v1.2.0
88
operators.operatorframework.io/project_layout: go.kubebuilder.io/v2
99
name: group-sync-operator.vX.Y.Z
1010
namespace: placeholder
@@ -419,13 +419,7 @@ spec:
419419
```shell
420420
git clone https://github.com/redhat-cop/group-sync-operator.git
421421
cd group-sync-operator
422-
oc apply -f deploy/crds/redhatcop.redhat.io_groupsyncs_crd.yaml
423-
oc apply -n group-sync-operator -f deploy/service_account.yaml
424-
oc apply -n group-sync-operator -f deploy/clusterrole.yaml
425-
oc apply -n group-sync-operator -f deploy/clusterrole_binding.yaml
426-
oc apply -n group-sync-operator -f deploy/role.yaml
427-
oc apply -n group-sync-operator -f deploy/role_binding.yaml
428-
oc apply -n group-sync-operator -f deploy/operator.yaml
422+
make deploy
429423
```
430424
431425
## Authentication

0 commit comments

Comments
 (0)