-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from soubinan/feature
Improve API with new endpoints
- Loading branch information
Showing
10 changed files
with
615 additions
and
163 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Ignition Server | ||
|
||
Small api aiming to serve ignition manifests dynamically on-the-fly. | ||
|
||
## The need | ||
|
||
To install [CoreOS](https://fedoraproject.org/coreos/)/[Flatcar](https://www.flatcar.org/) you need to expose the static ignition file via an HTTP server and the use it remotely in your installation live session or you have to copy your static ignition file locally in your installation live session. | ||
|
||
The pain increase with th number of servers to deploy. | ||
|
||
## The solution | ||
|
||
Instead of serve the ignition configs for each deployment you need, you can generate the ignition configs on-the-fly from [butane templates](https://coreos.github.io/butane/specs/) you can customize as you want. | ||
|
||
### How to use | ||
|
||
```bash | ||
docker pull ghcr.io/soubinan/ignition-server:latest | ||
|
||
docker run --rm -v $PWD/templates:/app/templates:Z -p 8000:8000 ghcr.io/soubinan/ignition-server:latest | ||
``` | ||
|
||
### Demo | ||
|
||
<https://ignition-server.soubilabs.xyz> |
Oops, something went wrong.