Re: cluster activation on k8s when native persistence is enabled

2018-12-09 Thread radha
Hi stephen, Thanks for your help. It worked!! Regards Krupa -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: cluster activation on k8s when native persistence is enabled

2018-12-06 Thread Roman Guseinov
Hi radha, You are able to connect to one of Ignite POD using kubectl and activate the cluster: /$ kubectl exec -it --namespace= -- /bin/bash $ cd /opt/ignite/apache-ignite-* $ ./bin/control.sh --activate/ Best Regards, Roman -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: cluster activation on k8s when native persistence is enabled

2018-12-06 Thread radha
Thanks stephen I will try to create a job and try this out. Yes, i have enabled native persistence. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Re: cluster activation on k8s when native persistence is enabled

2018-12-05 Thread Stephen Darlington
I tested it… it didn’t work. Try creating a job instead: apiVersion: batch/v1 kind: Job metadata: name: ignite-activate spec: ttlSecondsAfterFinished: 100 template: spec: containers: - name: ignite-image image: apacheignite/ignite:2.6.0 command:

Re: cluster activation on k8s when native persistence is enabled

2018-12-05 Thread Stephen Darlington
If you expose the TCP connector port (default 11211), you should be able to connect to your k8s cluster using the —host parameter, e.g., ./control.sh —host service_ip —activate I didn’t test this, but it should work. You don’t need to reactivate your cluster again. You do need to add and

cluster activation on k8s when native persistence is enabled

2018-12-04 Thread radha
Hi, I am new to ignite usage. Can someone help me, how to activate the ignite cluster on k8s environment without login to the ignite server pods to activate it by executing the command ./control.sh --activate? Is there any rest api call that i can use to activate the cluster. Also let