GitHub Action
Fleet apply
v0.0.3
Latest version
This action runs flt apply
on your git repo. https://github.com/rancher/fleet#quick-start
It requires kubeconfig
to be put as a secret in your github repo. To see how to add secret to your repo, check https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets.
Note: you need to encode your kubeconfig with base64 before you put it into github secrets.
cat ${KUBECONFIG} | base64
env:
KUBECONFIG_SECRET: ${{ secrets.kubeconfig }}
steps:
- uses: actions/[email protected]
with:
directory-to-bundle: './dir/to/bundle'