Skip to content
Snippets Groups Projects
Verified Commit 24336dc9 authored by Varac's avatar Varac
Browse files

Pin git repos to specific versions (closes #120)

parent 28a7f15e
No related branches found
No related tags found
No related merge requests found
......@@ -17,3 +17,8 @@ nextcloud_password: "{{ lookup('password', './secrets/nextcloud_admin_password c
# Note that LE's production server has stricter rate limits, so set this to
# "true" when you are testing something.
acme_staging: false
# git repo versions
git_helmfiles_version: '3c97c3f'
git_charts_version: 'HEAD'
git_local_storage_version: 'HEAD'
......@@ -156,7 +156,7 @@
git:
repo: 'https://code.greenhost.net/openappstack/helmfiles'
dest: '/oas/source/repos/helmfiles'
version: "master"
version: '{{ git_helmfiles_version }}'
- name: Clone charts repo
tags:
......@@ -164,6 +164,7 @@
git:
repo: 'https://code.greenhost.net/openappstack/charts'
dest: '/oas/source/repos/charts'
version: '{{ git_charts_version }}'
- name: Clone local-storage repo
tags:
......@@ -171,6 +172,7 @@
git:
repo: 'https://code.greenhost.net/openappstack/local-storage'
dest: '/oas/source/repos/local-storage'
version: '{{ git_local_storage_version }}'
- name: Create OAS namespaces
tags:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment