Shell Component
Shell component is a component that can be deployed using shell scripts. This is the easiest and most flexible way how to deploy a component.
Minimal component structure would look liek the following
./
├── hub-component.yaml # component manifest
├── deploy.sh # shell script to deploy the component
└── undeploy.sh # shell script to undeploy the component
Conventions
There are no specific variables that are expected to be passed to the shell script.
Scripts expected:
deploy.sh
- script to deploy the component (mandatory)undeploy.sh
- script to undeploy the component (mandatory)<verb>.sh
- any other script that can be used to perform any other action
You can define additional variables in the hub-component.yaml
file.
You can call this verb by running the following command
Best practices
Component should always have a undeploy.sh
script. Good design says the deployment of any component should be revertible (verb: undeploy)
Parametrise your shell scripts via environment variables. You can define environment variables in the hub-component.yaml
file.
Parametrsise your configuration via templates.
See Also
Last update:
August 30, 2023