WIP: feat(sharkey): add ansible role for deployment
This commit is contained in:
24
roles/sharkey/defaults/main/container.yml
Normal file
24
roles/sharkey/defaults/main/container.yml
Normal file
@ -0,0 +1,24 @@
|
||||
---
|
||||
sharkey_container_name: sharkey
|
||||
sharkey_container_image_registry: "registry.activitypub.software"
|
||||
sharkey_container_iamge_namespace: "transfem-org"
|
||||
sharkey_container_image_name: "sharkey"
|
||||
sharkey_container_image_repository: >-2
|
||||
{{
|
||||
[
|
||||
sharkey_container_image_registry | default([], true),
|
||||
sharkey_container_iamge_namespace | default([], true),
|
||||
sharkey_container_image_name
|
||||
] | flatten | join('/')
|
||||
}}
|
||||
sharkey_container_image_tag: ~
|
||||
sharkey_container_image_source: pull
|
||||
sharkey_container_image_force_source: >-2
|
||||
{{ sharkey_container_image_tag | default(false, true) | bool }}
|
||||
sharkey_container_image: >-2
|
||||
{{
|
||||
[
|
||||
sharkey_container_image_repository,
|
||||
sharkey_container_image_tag | default(sharkey_version, true)
|
||||
] | join(':')
|
||||
}}
|
Reference in New Issue
Block a user