File tree 6 files changed +11
-34
lines changed
6 files changed +11
-34
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,10 @@ buildtools/*
7
7
# EnvTest
8
8
testbin /*
9
9
10
+ # Bundle
11
+ bundle
12
+ bundle.Dockerfile
13
+
10
14
# Binaries for programs and plugins
11
15
* .exe
12
16
* .exe~
Original file line number Diff line number Diff line change 1
1
SHELL := /bin/bash
2
2
# Current Operator version
3
- VERSION ?= 0.0.7
3
+ VERSION ?= latest
4
4
# Operator SDK
5
5
OPERATOR_SDK ?= operator-sdk
6
6
# YQ Version
18
18
endif
19
19
endif
20
20
# Default bundle image tag
21
- BUNDLE_IMG ?= controller -bundle:$(VERSION )
21
+ BUNDLE_IMG ?= quay.io/redhat-cop/group-sync-operator -bundle:$(VERSION )
22
22
# Options for 'bundle-build'
23
23
ifneq ($(origin CHANNELS ) , undefined)
24
24
BUNDLE_CHANNELS := --channels=$(CHANNELS )
29
29
BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS ) $(BUNDLE_DEFAULT_CHANNEL )
30
30
31
31
# Image URL to use all building/pushing image targets
32
- IMG ?= controller:latest
32
+ IMG ?= quay.io/redhat-cop/group-sync-operator: $( VERSION )
33
33
# Produce CRDs that work back to Kubernetes 1.11 (no version conversion)
34
34
CRD_OPTIONS ?= "crd:trivialVersions=true,crdVersions=v1beta1"
35
35
Original file line number Diff line number Diff line change @@ -38,13 +38,7 @@ oc new-project group-sync-operator
38
38
``` shell
39
39
git clone https://github.com/redhat-cop/group-sync-operator.git
40
40
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
48
42
```
49
43
50
44
## Authentication
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# Adds namespace to all resources.
2
- namespace : group-sync-operator-system
2
+ namespace : group-sync-operator
3
3
4
4
# Value of this field is prepended to the
5
5
# names of all resources, e.g. a deployment named
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ metadata:
4
4
annotations :
5
5
alm-examples : ' []'
6
6
capabilities : Basic Install
7
- operators.operatorframework.io/builder : operator-sdk-v1.1.0+git
7
+ operators.operatorframework.io/builder : operator-sdk-v1.2.0
8
8
operators.operatorframework.io/project_layout : go.kubebuilder.io/v2
9
9
name : group-sync-operator.vX.Y.Z
10
10
namespace : placeholder
@@ -419,13 +419,7 @@ spec:
419
419
```shell
420
420
git clone https://github.com/redhat-cop/group-sync-operator.git
421
421
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
429
423
```
430
424
431
425
## Authentication
You can’t perform that action at this time.
0 commit comments