2022-03-31 14:45:11 +00:00
|
|
|
# Example repository for customizing a Stackspin cluster
|
2022-03-30 17:04:47 +00:00
|
|
|
|
2022-03-31 14:45:11 +00:00
|
|
|
Example boilerplate for a custom [flux](https://fluxcd.io/) repository
|
|
|
|
which can be added to a [Stackspin](https://stackspin.net) cluster.
|
|
|
|
The main use-case is to add additional applications
|
|
|
|
which are not integrated into Stackspin (yet).
|
2022-03-30 17:04:47 +00:00
|
|
|
|
2022-03-31 14:45:11 +00:00
|
|
|
For a more advanced example
|
|
|
|
see the [flux2-kustomize-helm-example](https://github.com/fluxcd/flux2-kustomize-helm-example)
|
|
|
|
repository.
|
2022-03-30 17:28:59 +00:00
|
|
|
This repo's directory structure is similar to the `flux2-kustomize-helm-example`
|
|
|
|
one.
|
2022-03-30 20:11:12 +00:00
|
|
|
|
|
|
|
## Basic configuration
|
|
|
|
|
|
|
|
We'll start with a very basic configuration:
|
|
|
|
|
|
|
|
* It uses a public git repo
|
|
|
|
* No secrets are included
|
|
|
|
* No forking/modifications needed, install as it is
|
|
|
|
|
|
|
|
Apply it to your cluster:
|
|
|
|
|
|
|
|
```sh
|
|
|
|
basic/install.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
List the resource created by this flux repo:
|
|
|
|
|
|
|
|
```sh
|
2022-03-31 14:45:11 +00:00
|
|
|
kubectl -n example-basic get gitrepositories
|
|
|
|
kubectl -n example-basic get kustomizations
|
|
|
|
kubectl -n example-basic get helmreleases
|
|
|
|
kubectl -n example-basic get pods
|
2022-03-30 20:11:12 +00:00
|
|
|
```
|
|
|
|
|
2022-03-31 14:45:11 +00:00
|
|
|
Show output of the single app applied, [podinfo](https://github.com/stefanprodan/podinfo)
|
2022-03-30 20:11:12 +00:00
|
|
|
|
|
|
|
```sh
|
|
|
|
curl --resolve podinfo.local:80:CLUSTER_IPV4_ADDRESS http://podinfo.local
|
|
|
|
```
|
2022-03-30 20:32:31 +00:00
|
|
|
|
|
|
|
## What's next ?
|
|
|
|
|
2022-03-31 14:45:11 +00:00
|
|
|
There are two ways of using a custom flux
|
|
|
|
|
2022-03-31 11:28:41 +00:00
|
|
|
* Fork this repo to a private git remote (Github, Gitab, etc.)
|
2022-03-30 20:32:31 +00:00
|
|
|
* Configure flux to use ssh instead of https for cloning
|
|
|
|
* Add private ssh key for git pulling to flux
|
|
|
|
* Add public ssh key for git pulling to your git remote
|
|
|
|
* [Encrypt your secrets using sops](https://github.com/fluxcd/flux2-kustomize-helm-example#encrypt-kubernetes-secrets)
|