Skip to content

Commit

Permalink
Merge pull request #13 from stackhpc/kubeflow-notes
Browse files Browse the repository at this point in the history
Add help text to KubeFlow app
  • Loading branch information
sd109 authored Jan 24, 2024
2 parents 9c58d7a + c0ff1d7 commit 4a2aa14
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion kubeflow-azimuth/to-helm-chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def make_helm_chart_template(chart_path, chart_yml, values_yml):
name: kubeflow-azimuth
version: 0.0.2
icon: https://raw.githubusercontent.com/stackhpc/azimuth-charts/main/kubeflow-azimuth/logo.svg
description: A KubeFlow machine learning environment
description: \"A KubeFlow machine learning environment (requires a cluster with 12+ CPUs and 16GB+ of RAM).\"
dependencies:
- name: kubeflow-crds
version: ">=0-0"
Expand All @@ -59,6 +59,18 @@ def make_helm_chart_template(chart_path, chart_yml, values_yml):
"""
with open(main_chart_path / 'values.schema.json', 'w') as schema_file:
schema_file.write(json_schema)

# Write NOTES.txt for chart to be consumed by Azimuth UI
notes_txt = """
For more information on using KubeFlow see the [official documentation](https://www.kubeflow.org/docs/started/introduction/).
DISCLAIMER: This app is currently at a proof-of-concept stage and does not yet provide full integration with Azimuth's standard authentication and access management features. The default login credentials for this platform are
- username: [email protected]
- password: 12341234
Full integration with the Azimuth identity provider is planned for a future release.
"""
with open(main_chart_path / 'templates' / 'NOTES.txt', 'w') as notes_file:
notes_file.write(notes_txt)

# Write manifest files
with open('kustomize-build-output.yml', 'r') as input_file:
Expand Down

0 comments on commit 4a2aa14

Please sign in to comment.