A documentation on Kube version Bisque #36
FeiX-OvO
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Guide on using Kubernetes version Bisque
Starting the instance on your local machine
Install k8s and
kubectl
.You will need two files
bisque.yaml
andbisque-svc.yaml
bisque.yaml
includes the information about the image and containers.bisque-svc.yaml
specifies the setting up of communication ports.modules
folder from the git repo into your local machine and mount the folder to the image.To do so, add the following line in
bisque.yaml
:Under
containers:
addUnder
volumes:
addkubectl apply -f bisque.yaml
andkubectl apply -f bisque-svc.yaml
to build the image. You need to run both command to have the instance run and accessible.kubectl get pods --all-namespaces
to check the status of the pods.kubectl exec --stdin --tty [...] -- /bin/bash
and replace the missing information from the id you got fromget pods
kubectl exec --stdin --tty [...] -- /bin/bash
sudo chmod +x bisque bisque.db staging
.To check your local instance of bisque, you will need your domain name which you can get by running
domainname -A
. Then head on to your browser and go to {domainname}:8080. You should see you local instance running.Login with admin user and password and register modules as described in the Bisque documentation.
...
Beta Was this translation helpful? Give feedback.
All reactions