diff --git a/ansible/roles/setup/tasks/main.yml b/ansible/roles/setup/tasks/main.yml
index 9d65f1f4fbf7faee386bb5826da79178e1644194..5fffa25a15e5427a7e9299c5fb649816195f2541 100644
--- a/ansible/roles/setup/tasks/main.yml
+++ b/ansible/roles/setup/tasks/main.yml
@@ -22,10 +22,19 @@
   register: createStorage
 - debug: var=createStorage.stdout
 
-- name: Clone/update openappstack git repos
-  command: 'oas_control /usr/local/bin/control getRepos'
-  register: getRepos
-- debug: var=getRepos.stdout
+- name: Clone helmfiles repo
+  tags:
+    - 'temp'
+  git:
+    repo: 'https://code.greenhost.net/openappstack/helmfiles'
+    dest: '/oas/source/repos/helmfiles'
+
+- name: Clone charts repo
+  tags:
+    - 'temp'
+  git:
+    repo: 'https://code.greenhost.net/openappstack/charts'
+    dest: '/oas/source/repos/charts'
 
 - name: Configure Keycloak
   command: 'oas_control /usr/local/bin/control configureKeycloak'