Skip to content

Latest commit

 

History

History
60 lines (44 loc) · 2.2 KB

README.md

File metadata and controls

60 lines (44 loc) · 2.2 KB

infinispan-operator

This is an openshift operator to run and rule Infinispan.

It has been developed following the tutorial here, so it's ok to follow that guide at the moment if you want to do experiments on this code.

My developement envronment is:

vscode go (GOPATH=$HOME/go)
operator-sdk (master)
oc cluster up (okd 3.11)

I would like to keep DONE and TODO list in issues, please post your wishes there.

How to quickstart and see that something works:
open 2 terminals
set PATH for go and okd

term 1
oc cluster up
oc apply -f deploy/crds/cache_v1alpha1_infinispan_crd.yaml # this defines the resurce

term 2
operator-sdk up local --namespace=myproject

term 1
oc create configmap infinispan-app-configuration --from-file=./config # this creates the configmap needed by the cluster
oc apply -f deploy/crds/cache_v1alpha1_infinispan_cr.yaml # this creates the cluster

you can have fun and change the size parameter in cache_v1alpha1_infinispan_cr.yaml and apply it again to see the operator in action

Buiding and pushing the image

cd $GOPATH  
mkdir -p $GOPATH/src/github.com/rigazilla/  
cd $GOPATH/src/github.com/rigazilla/  
git clone https://github.com/rigazilla/infinispan-operator.git  
cd infinispan-operator  
operator-sdk build jboss/infinispan-server-operator  # Or other image name  

docker push jboss/infinispan-server-operator  # Or other image name  

Running on an existing 4.0.0 cluster

After the image is pushed to a public repo, edit deploy/operator.yaml and replace REPLACE_IMAGE by the correct image name.

Then install the templates:

cd $GOPATH/src/github.com/rigazilla/infinispan-operator
oc policy add-role-to-user view system:serviceaccount:$(oc project -q):default -n $(oc project -q)
oc create configmap infinispan-app-configuration --from-file=./config

oc apply -f deploy/service_account.yaml
oc apply -f deploy/role.yaml
oc apply -f deploy/role_binding.yaml
oc apply -f deploy/crds/cache_v1alpha1_infinispan_crd.yaml
oc apply -f deploy/operator.yaml
oc apply -f deploy/crds/cache_v1alpha1_infinispan_cr.yaml