-
Notifications
You must be signed in to change notification settings - Fork 1
cli manifest files #1064
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
raphael-goetz
wants to merge
6
commits into
main
Choose a base branch
from
feat/cli-manifest
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
cli manifest files #1064
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3853d03
feat: added cli manifest
raphael-goetz 45da25e
feat: added service config placeholder
raphael-goetz 0344003
feat: added compose overwrite
raphael-goetz 30dbcfc
feat: added port mapping for aquila
raphael-goetz 12e3f7d
feat: moved cli files into cli folder
raphael-goetz 9be5d81
feat: made aquila external grpc port configurable
raphael-goetz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or 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,6 @@ | ||
| services: | ||
| aquila: | ||
| environment: | ||
| AQUILA_SERVICE_CONFIG_PATH: /codezero/service.configuration.json | ||
| volumes: | ||
| - ./service.configuration.json:/codezero/service.configuration.json:ro |
This file contains hidden or 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,122 @@ | ||
| { | ||
| "version": "0.1.0", | ||
| "steps": [ | ||
| { | ||
| "id": "initial_root_mail", | ||
| "type": "input", | ||
| "section": "Admin account", | ||
| "prompt": "Root email", | ||
| "default": "root@code0.tech" | ||
| }, | ||
| { | ||
| "id": "initial_root_password", | ||
| "type": "password", | ||
| "section": "Admin account", | ||
| "prompt": "Root password", | ||
| "confirm": true, | ||
| "default": "root" | ||
| }, | ||
| { | ||
| "id": "compose_profiles", | ||
| "type": "multiselect", | ||
| "section": "Runtime profiles", | ||
| "prompt": "Choose profiles", | ||
| "join": ",", | ||
| "options": [ | ||
| { "label": "ide", "value": "ide", "default": true }, | ||
| { "label": "runtime", "value": "runtime", "default": true }, | ||
| { "label": "ai", "value": "ide_velorum", "default": false } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "image_registry", | ||
| "type": "select", | ||
| "section": "Runtime artifacts", | ||
| "prompt": "Choose artifact registry", | ||
| "allow_custom": true, | ||
| "custom_prompt": "Custom image registry", | ||
| "options": [ | ||
| { "label": "github", "value": "ghcr.io/code0-tech/reticulum/ci-builds" }, | ||
| { "label": "gitlab", "value": "registry.gitlab.com/code0-tech/packages" } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "image_edition", | ||
| "type": "select", | ||
| "section": "Runtime artifacts", | ||
| "prompt": "Choose edition", | ||
| "options": [ | ||
| { "label": "Community Edition (ce)", "value": "ce", "default": true }, | ||
| { "label": "Cloud / Commercial (cc)", "value": "cc" } | ||
| ] | ||
| }, | ||
| { | ||
| "id": "image_tag", | ||
| "type": "input", | ||
| "section": "Runtime artifacts", | ||
| "prompt": "Version", | ||
| "default": "latest" | ||
| }, | ||
| { | ||
| "id": "action_image_tag", | ||
| "type": "input", | ||
| "section": "Runtime artifacts", | ||
| "prompt": "Built-in actions version (rest-action, cron-action)", | ||
| "default": "0.0.0-experimental-2758971679-6d488c639d742bd4443e093c66c7d4cb54c5b0da" | ||
| } | ||
| ], | ||
| "secrets": [ | ||
| { | ||
| "id": ["initial_runtime_token", "aquila_backend_token"], | ||
| "label": "shared Sagittarius <-> Aquila token" | ||
| }, | ||
| { | ||
| "id": "taurus_aquila_token", | ||
| "label": "Taurus Aquila token" | ||
| }, | ||
| { | ||
| "id": "aquila_action_rest_token", | ||
| "label": "REST action Aquila token" | ||
| }, | ||
| { | ||
| "id": "aquila_action_cron_token", | ||
| "label": "Cron action Aquila token" | ||
| }, | ||
| { | ||
| "id": "velorum_jwt_secret", | ||
| "length": 32, | ||
| "label": "Velorum JWT secret" | ||
| }, | ||
| { | ||
| "id": "sagittarius_gateway_jwt_secret", | ||
| "length": 32, | ||
| "label": "Sagittarius gateway JWT secret" | ||
| }, | ||
| { | ||
| "id": "sagittarius_db_encryption_primary_key", | ||
| "length": 32, | ||
| "label": "Sagittarius DB encryption primary key" | ||
| }, | ||
| { | ||
| "id": "sagittarius_db_encryption_deterministic_key", | ||
| "length": 32, | ||
| "label": "Sagittarius DB encryption deterministic key" | ||
| }, | ||
| { | ||
| "id": "sagittarius_db_encryption_key_derivation_salt", | ||
| "length": 32, | ||
| "label": "Sagittarius DB encryption key derivation salt" | ||
| }, | ||
| { | ||
| "id": "sagittarius_rails_secret_key_base", | ||
| "length": 32, | ||
| "label": "Sagittarius Rails secret key base" | ||
| } | ||
| ], | ||
| "templates": [ | ||
| { "template": ".env", "output": ".env" }, | ||
| { "template": "docker-compose.yml", "output": "docker-compose.yml" }, | ||
| { "template": "service.configuration.json.tera", "output": "service.configuration.json" }, | ||
| { "template": "docker-compose.override.yml", "output": "docker-compose.override.yml", "required": false } | ||
| ] | ||
| } |
This file contains hidden or 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,9 @@ | ||
| { | ||
| "actions": [ | ||
| { "identifier": "rest-action", "token": "{{ aquila_action_rest_token }}" }, | ||
| { "identifier": "cron-action", "token": "{{ aquila_action_cron_token }}" } | ||
| ], | ||
| "runtimes": [ | ||
| { "identifier": "taurus", "token": "{{ taurus_aquila_token }}" } | ||
| ] | ||
| } |
This file contains hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.