Fix version tag.

This commit is contained in:
Brian Lee 2023-07-16 13:25:07 -07:00
parent 296a5f9234
commit 078a8a1982
4 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ Then source them into your local environment.
See the [defaults](defaults/main.yml) for the role. See the [defaults](defaults/main.yml) for the role.
```yaml ```yaml
samourai_dojo_version: v1.20.0 samourai_dojo_version: "1.20.0"
samourai_dojo_onion_address: "{{ lookup('ansible.builtin.env', 'SAMOURAI_DOJO_ONION') }}" samourai_dojo_onion_address: "{{ lookup('ansible.builtin.env', 'SAMOURAI_DOJO_ONION') }}"
samourai_dojo_onion_port: 80 samourai_dojo_onion_port: 80
``` ```

View File

@ -1,5 +1,5 @@
--- ---
samourai_dojo_version: v1.20.0 samourai_dojo_version: "1.20.0"
samourai_dojo_onion_address: "{{ lookup('ansible.builtin.env', 'SAMOURAI_DOJO_ONION') | default('_') }}" samourai_dojo_onion_address: "{{ lookup('ansible.builtin.env', 'SAMOURAI_DOJO_ONION') | default('_') }}"
samourai_dojo_onion_port: 80 samourai_dojo_onion_port: 80

View File

@ -5,7 +5,7 @@
containers.podman.podman_image: containers.podman.podman_image:
name: samourai-dojo name: samourai-dojo
path: ~/src/samourai-dojo path: ~/src/samourai-dojo
tag: "{{ samourai_dojo_version }}" tag: "v{{ samourai_dojo_version }}"
validate_certs: true validate_certs: true
pull: false pull: false
state: build state: build
@ -27,7 +27,7 @@
register: podman_container_output register: podman_container_output
containers.podman.podman_container: containers.podman.podman_container:
debug: no debug: no
image: "samourai-dojo:{{ samourai_dojo_version }}" image: "samourai-dojo:v{{ samourai_dojo_version }}"
image_strict: yes image_strict: yes
recreate: yes recreate: yes
state: present state: present

View File

@ -3,7 +3,7 @@
ansible.builtin.git: ansible.builtin.git:
repo: 'https://code.samourai.io/dojo/samourai-dojo.git' repo: 'https://code.samourai.io/dojo/samourai-dojo.git'
dest: ~/src/samourai-dojo dest: ~/src/samourai-dojo
version: "{{ samourai_dojo_version }}" version: "v{{ samourai_dojo_version }}"
register: git_repository register: git_repository
tags: upgrade tags: upgrade