Skip to content
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

[Lazy] Introduce system profile #417

Open
wants to merge 1 commit into
base: lazy/group-complete
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions lazy.ansible/.manala.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ system:
env_file: []
# @schema {"items": {"type": "string"}}
mount: []
# @schema {"type": ["null", "string"]}
profile: ~
docker: false
goss:
# @schema {"enum": [null, "0.4.4", "0.3.23"]}
Expand Down
5 changes: 5 additions & 0 deletions lazy.ansible/.manala/etc/profile.d/profile.sh.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Profile template
# Don't edit this file directly. Instead, set profile in project .manala.yaml, and run `manala up`.
{{ if .Vars.system.profile }}
{{ .Vars.system.profile }}
{{- end -}}
2 changes: 2 additions & 0 deletions lazy.kubernetes/.manala.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ system:
env_file: []
# @schema {"items": {"type": "string"}}
mount: []
# @schema {"type": ["null", "string"]}
profile: ~
docker: false
goss:
# @schema {"enum": [null, "0.4.4", "0.3.23"]}
Expand Down
5 changes: 5 additions & 0 deletions lazy.kubernetes/.manala/etc/profile.d/profile.sh.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Profile template
# Don't edit this file directly. Instead, set profile in project .manala.yaml, and run `manala up`.
{{ if .Vars.system.profile }}
{{ .Vars.system.profile }}
{{- end -}}
2 changes: 2 additions & 0 deletions lazy.symfony/.manala.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ system:
env_file: []
# @schema {"items": {"type": "string"}}
mount: []
# @schema {"type": ["null", "string"]}
profile: ~
docker: false
goss:
# @schema {"enum": [null, "0.4.4", "0.3.23"]}
Expand Down
5 changes: 5 additions & 0 deletions lazy.symfony/.manala/etc/profile.d/profile.sh.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Profile template
# Don't edit this file directly. Instead, set profile in project .manala.yaml, and run `manala up`.
{{ if .Vars.system.profile }}
{{ .Vars.system.profile }}
{{- end -}}