Deploy a Workload
Kadras Engineering Platform provides capabilities to support application deployment workflows from image to URL based on Knative or plain Kubernetes.
First, ensure you have the Knative CLI installed.
Then, deploy an application from its OCI image.
kn service create hello --image ghcr.io/knative/helloworld-go
The application will be available through a local URL with a self-signed certificate and autoscaling capabilities.
https hello.default.127.0.0.1.sslip.io --verify no
When you're done, you can delete the application.
kn service delete hello