A Kubernetes operator designed to deploy and managed containerized frontends.
The operator is generally availble in the Consoledot Ephemeral and Dev Clusters. In order to use the Frontend Operator, you only need to apply a Frontend CRD to a namespace that you manage using Bonfire.
Bonfire is the consoledot tool used to interact with Kuberentes clusters.
Simply login to the ephemeral cluster and run bonfire deploy $MYAPP --frontends true -d 8h
to get access to your own ephemeral environment.
If your app does not have an entry into app-interface yet, bonfire namespace reserve
will supply you with a bootstrapped
namespace to deploy your application with oc apply -f $My-Frontend-CRD.yaml -n $NS
Note: We only recommend this method for local development on the operator itself.
Please use the above section to develop an app that depends on this operator.
You need to run kubernetes locally, we recommend minikube.
The frontend operator is dependent on Clowder. Follow those directions to get Clowder running and continue along.
Once Clowder is up and running (oc get pod -n clowder-system
has a running controller-manager
), there are two
options we can use to proceed.
- Create the boot namespace
$ make create-boot-namespace
- Install the resources:
$ make install-resources
- Run:
$ make run-local
If you make changes to the CRDs make sure to install the resources and run again.
Create .vscode/launch.json
and put this in that file:
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Operator",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/",
"args": [
"--metrics-bind-address", ":9090",
"--health-probe-bind-address", ":9091",
]
}
]
}
Once that is saved you'll see "Debug Operator" in the launch menu in VS Code. Also, before running in VS Code make sure you have created the boot namespace and install the resources as shown above.
If you want to access the app from your computer, you have to update /etc/hosts where the IP is the one from minikube ip
192.168.99.102 env-boot
192.168.99.102 env-boot-auth
Once you update it you can access the app from https://env-boot/insights/inventory
Kuttl is an end to end testing framework for Kubernetes operators. We hope to provide full test coverage for the Frontend Operator with kuttl.
To run the kuttl tests you'll need to be running the operator and Clowder in minikube as shown in the directions above. You also need to make sure you have kuttl installed on your machine.
Once all that is in place you can run the kuttl tests:
$ make kuttl
Friendly reminder: make sure you have the frontend operator runnning (make run-local
) before you run the tests or they will never work and you'll go nuts trying to figure out why.
If you want to run a single test you can do this:
$ kubectl kuttl test --config kuttl-config.yml ./tests/e2e --test bundles
where bundles
is the name of the directory that contains the test you want to run.