forked from ESGF/esgf-docker
-
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.
Move variables to role defaults in order to use inventory group_vars
- Loading branch information
1 parent
1d16d85
commit 9d4706c
Showing
4 changed files
with
79 additions
and
48 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
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,9 @@ | ||
--- | ||
|
||
### | ||
# Configuration for private registries that require authentication | ||
### | ||
docker_registries: [] | ||
# - registry: my.registry.org | ||
# username: registryuser | ||
# password: registrypassword |
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,39 @@ | ||
--- | ||
|
||
### | ||
# The hostname to use - by default, use the FQDN of the host | ||
### | ||
hostname: "{{ ansible_fqdn }}" | ||
|
||
|
||
### | ||
# Default values used for all images | ||
# Each of these values can be overidden on a per-image basis if required | ||
### | ||
|
||
# The image prefix to use | ||
# If using a private registry, change this, e.g. registry.ceda.ac.uk/esgfdeploy | ||
image_prefix: esgfdeploy | ||
# The image tag to use | ||
image_tag: latest | ||
# Indicates whether images should be pulled every time the playbook runs | ||
# When using mutable tags, like latest or branch names, this should be true | ||
# When using immutable tags, like commit shas or release tags, this can be false | ||
image_pull: true | ||
|
||
|
||
### | ||
# Proxy configuration | ||
### | ||
|
||
# Settings for the proxy image | ||
proxy_image_prefix: "{{ image_prefix }}" | ||
proxy_image_tag: "{{ image_tag }}" | ||
proxy_image_pull: "{{ image_pull }}" | ||
proxy_image_repository: nginx | ||
|
||
# Indicates if THREDDS is enabled or not | ||
thredds_enabled: true | ||
|
||
# Indicates if the Nginx file server should be deployed or not | ||
fileserver_enabled: true |