-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add cloud credits API to azimuth-ops
- Loading branch information
1 parent
85eb578
commit 004850c
Showing
3 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
|
||
coral_credits_chart_repo: https://stackhpc.github.io/coral-credits | ||
coral_credits_chart_name: coral-credits | ||
coral_credits_chart_version: 0.1.0 | ||
|
||
coral_credits_release_namespace: coral-credits | ||
coral_credits_release_name: coral-credits | ||
|
||
# The timeout to wait for coral credits API to become ready | ||
coral_credits_wait_timeout: 10m | ||
|
||
# The values for the release | ||
coral_credits_release_defaults: {} | ||
coral_credits_release_overrides: {} | ||
coral_credits_release_values: >- | ||
{{- | ||
coral_credits_release_defaults | | ||
combine(coral_credits_release_overrides, recursive = True) | ||
}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- | ||
|
||
- name: Install Coral Credits API on target Kubernetes cluster | ||
kubernetes.core.helm: | ||
chart_ref: "{{ coral_credits_chart_name }}" | ||
chart_repo_url: "{{ coral_credits_chart_repo }}" | ||
chart_version: "{{ coral_credits_chart_version }}" | ||
release_namespace: "{{ coral_credits_release_namespace }}" | ||
release_name: "{{ coral_credits_release_name }}" | ||
release_values: "{{ coral_credits_release_values }}" | ||
atomic: yes | ||
create_namespace: yes | ||
wait: yes | ||
wait_timeout: "{{ coral_credits_wait_timeout }}" |