-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bcc1edd
commit e406b6d
Showing
6 changed files
with
70 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,41 @@ | ||
# charts | ||
Helm charts for WhyLabs | ||
# Helm Charts for WhyLabs | ||
|
||
## How to use WhyLabs Helm repository | ||
|
||
```shell | ||
helm_repo="ghcr.io/whylabs" | ||
chart_name="langkit" | ||
chart_version="0.1.0" | ||
chart="${chart_name}-${chart_version}.tgz" | ||
|
||
# Release and namespace values mirror other variables for simplicity. | ||
# Set these to as desired | ||
release="${chart_name}" | ||
namespace="${release}" | ||
|
||
|
||
# Downloads <chart_name>-<chart_version>.tgz to your current directory | ||
helm pull \ | ||
"oci://${helm_repo}/${chart_name}" \ | ||
--version "${chart_version}" | ||
|
||
helm diff upgrade \ | ||
`# --allow-unreleased will show a diff for a new install` \ | ||
--allow-unreleased \ | ||
`# set namespace.create to false if the target namespace already exists` \ | ||
--set namespace.create=false \ | ||
--namespace "${namespace}" \ | ||
"${release}" . | ||
|
||
# Specify the .tgz file as the na | ||
helm upgrade --install \ | ||
`# set namespace.create to false if the target namespace already exists` \ | ||
--set namespace.create=false \ | ||
--namespace "${namespace}" \ | ||
"${release}" . | ||
|
||
# Uninstall | ||
helm uninstall \ | ||
--namespace "${namespace}" \ | ||
"${release}" | ||
``` |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
apiVersion: v2 | ||
name: langkit | ||
description: A Helm chart for Kubernetes | ||
description: A Helm chart for LangKit container deployment | ||
type: application | ||
version: 0.1.0 | ||
appVersion: "1.16.0" | ||
version: 0.2.0 | ||
appVersion: "0.0.28" |
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
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