Table of Contents generated with DocToc
- What is the Hybrid Deployable Operator
- Community, discussion, contribution, and support
- Getting Started
- Hybrid Application References
The hybridDeployable resource is introduced to handle deployable components running on non-kubernetes platform(s). This operator is intended to work as part of collection of operators for the HybridApplication. See References for additional information.
Check the CONTRIBUTING Doc for how to contribute to the repo.
- git v2.18+
- Go v1.13.4+
- operator-sdk v0.15.1
- Kubernetes v1.14+
- kubectl v1.14+
Check the Development Doc for how to contribute to the repo.
$ mkdir -p "$GOPATH"/src/github.com/IBM
$ cd "$GOPATH"/src/github.com/IBM
$ git clone https://github.com/IBM/hybriddeployable-operator.git
$ cd "$GOPATH"/src/github.com/IBM/hybriddeployable-operatorBuild the hybriddeployable-operator and push it to a registry. Modify the example below to reference a container reposistory you have access to.
$ operator-sdk build quay.io/<user>/hybriddeployable-operator:v0.1.0
$ sed -i 's|REPLACE_IMAGE|quay.io/johndoe/hybriddeployable-operator:v0.1.0|g' deploy/operator.yaml
$ docker push quay.io/johndoe/hybriddeployable-operator:v0.1.0Register the CRD.
$ kubectl create -f deploy/crds/app.cp4mcm.ibm.com_hybriddeployables_crd.yamlSetup RBAC and deploy.
$ kubectl create -f deploy/service_account.yaml
$ kubectl create -f deploy/role.yaml
$ kubectl create -f deploy/role_binding.yaml
$ kubectl create -f deploy/operator.yamlVerify hybriddeployable-operator is up and running.
$ kubectl get deployment
NAME READY UP-TO-DATE AVAILABLE AGE
hybriddeployable-operator 1/1 1 1 2m20sCreate the sample CR.
$ kubectl create -f deploy/crds/app.cp4mcm.ibm.com_hybriddeployables_cr.yaml
NAME READY UP-TO-DATE AVAILABLE AGE
hybriddeployable-operator 1/1 1 1 2m20s
$ kubectl get hybriddeployables
NAME AGE
simple 11sRemove all resources created.
$ kubectl delete -f deploy
$ kubectl delete -f deploy/crds/app.cp4mcm.ibm.com_hybriddeployables_crd.yamlPlease refer to Troubleshooting documentation for further info.