Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CE-715]Fixed the fabric operator image path issue #45

Merged
merged 1 commit into from
Oct 23, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/agent/fabric-operator/README.md
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,13 @@ customresourcedefinition.apiextensions.k8s.io/peers.fabric.hyperledger.org creat
```
Once the operator crds get created, start up the controller using the following command
```
kubectl apply -f https://github.com/hyperledger/cello/blob/master/src/agent/fabric-operator/deploy/operator.yaml?raw=true
kubectl apply \
-f https://github.com/hyperledger/cello/blob/master/src/agent/fabric-operator/deploy/service_account.yaml?raw=true \
-f https://github.com/hyperledger/cello/blob/master/src/agent/fabric-operator/deploy/role.yaml?raw=true \
-f https://github.com/hyperledger/cello/blob/master/src/agent/fabric-operator/deploy/role_binding.yaml?raw=true \
-f https://github.com/hyperledger/cello/blob/master/src/agent/fabric-operator/deploy/operator.yaml?raw=true
```
The above command starts up the fabric operator controller in your k8s cluster. If your k8s cluster already have the controller running, you can skip these steps.
The above command starts up the fabric operator controller in your k8s cluster. If your k8s cluster already has the controller running, you can skip this step.

### [Stand up a Fabric CA node](#startupca)

Expand Down
2 changes: 1 addition & 1 deletion src/agent/fabric-operator/deploy/operator.yaml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
containers:
- name: fabric-operator
# Replace this with the built image name
image: hyperledger/fabric-operator:latest
image: hyperledger/cello-fabric-operator:latest
command:
- fabric-operator
imagePullPolicy: Always
Expand Down