How do I deploy my App using Wayfinder (without CI/CD)?
Prerequisites
Why use Wayfinder to deploy my App?
In this guide, you'll deploy your app using Wayfinder without any CI/CD processes. You might opt for this approach when experimenting for the first time or when you need to quickly test something in a non-production environment that doesn't require integration with your CI/CD pipeline.
CLI commands
wf deploy application APPNAME ENVNAME -w WORKSPACE
EXAMPLE
wf deploy application app1 demo1 -w sand2
EXPLANATION
In the above example, you've instructed Wayfinder to deploy your application manifests for your app1
application in the sand2
workspace into the demo1
environment (cluster).
Wayfinder deployed the following manifests:
- kind: Deployment -> Deployment manifest for the component
- kind: Service -> Service manifest for the component's service configuration
- kind: Ingress -> Ingress manifest for the component's Ingress configuration
- kind: NetworkPolicy -> Network Policy manifests which instructs the network policy to use this Ingress configuration