Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨ Add a log msg to clarify a secret is required to deploy kai #378

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions roles/tackle/tasks/kai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@
namespace: "{{ app_namespace }}"
register: kai_api_key_secret_status

- name: Verify kai-api-key-secret has been created
when: (kai_api_key_secret_status.resources|length) == 0
debug:
msg: >
Kai will not deploy until the credential secret exists.
kubectl create secret -n {{ app_namespace }} generic {{ kai_api_key_secret_name }}
--fromliteral=genai_key=[BAM_KEY]
--from-literal=api_base=[OPENAI_BASE]
--from-literal=api_key=[OPENAI_KEY]

- when: (kai_api_key_secret_status.resources|length) > 0
block:
- name: Check if JWT token secret is defined
Expand Down
Loading