Skip to content

Commit af596c8

Browse files
authored
🐛 Add back mount path, and fix formatting error when multiple variables are pulled from a secret (#447)
Signed-off-by: Fabian von Feilitzsch <[email protected]>
1 parent 98a9fde commit af596c8

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/pr-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
- name: Checkout PR branch
3333
uses: actions/checkout@v4
3434
- name: Ansible Lint
35-
uses: ansible/ansible-lint-action@main
35+
uses: ansible/ansible-lint@main
3636
with:
37-
path: "roles/"
37+
working_directory: "roles/"
3838

3939
build-operator-bundle:
4040
needs: detect-changes

roles/tackle/templates/kai/kai-api-deployment.yaml.j2

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ spec:
2020
ports:
2121
- containerPort: 8000
2222
env:
23+
- name: MOUNT_PATH
24+
value: /api
2325
- name: KAI_LLM_PARAMS
2426
value: '{{ kai_llm_params | to_json }}'
2527
- name: KAI_DB_DSN
@@ -30,4 +32,4 @@ spec:
3032
secretKeyRef:
3133
name: "{{ kai_api_key_secret_name }}"
3234
key: {{ key }}
33-
{%- endfor %}
35+
{% endfor %}

0 commit comments

Comments
 (0)