forked from flyteorg/flyte
-
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.
Updated flyte-sandbox-bundled helm chart (flyteorg#3066)
Signed-off-by: Jeev B <[email protected]>
- Loading branch information
Showing
54 changed files
with
3,116 additions
and
1,016 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 @@ | ||
gen |
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,23 @@ | ||
# Patterns to ignore when building packages. | ||
# This supports shell glob matching, relative path matching, and | ||
# negation (prefixed with !). Only one pattern per line. | ||
.DS_Store | ||
# Common VCS dirs | ||
.git/ | ||
.gitignore | ||
.bzr/ | ||
.bzrignore | ||
.hg/ | ||
.hgignore | ||
.svn/ | ||
# Common backup files | ||
*.swp | ||
*.bak | ||
*.tmp | ||
*.orig | ||
*~ | ||
# Various IDEs | ||
.project | ||
.idea/ | ||
*.tmproj | ||
.vscode/ |
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,16 @@ | ||
apiVersion: v2 | ||
name: flyte-binary | ||
description: Chart for basic single Flyte executable deployment | ||
|
||
type: application | ||
|
||
# This is the chart version. This version number should be incremented each time you make changes | ||
# to the chart and its templates, including the app version. | ||
# Versions are expected to follow Semantic Versioning (https://semver.org/) | ||
version: 0.1.0 | ||
|
||
# This is the version number of the application being deployed. This version number should be | ||
# incremented each time you make changes to the application. Versions are not expected to | ||
# follow Semantic Versioning. They should reflect the version the application is using. | ||
# It is recommended to use it with quotes. | ||
appVersion: "1.16.0" |
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,17 @@ | ||
|
||
GENERATED_FILE="gen/binary_manifest.yaml" | ||
DEMO_GENERATED_FILE="gen/demomanifest.yaml" | ||
|
||
cleanhelm: | ||
@[ -f $(GENERATED_FILE) ] && rm $(GENERATED_FILE) || true | ||
|
||
cleandemo: | ||
@[ -f $(DEMO_GENERATED_FILE) ] && rm $(DEMO_GENERATED_FILE) || true | ||
|
||
.PHONY: helm | ||
helm: cleanhelm | ||
helm template binary-tst-deploy ./ -n flyte --dependency-update --debug --create-namespace -a rbac.authorization.k8s.io/v1 -a networking.k8s.io/v1/Ingress -a apiextensions.k8s.io/v1/CustomResourceDefinition > $(GENERATED_FILE) | ||
|
||
.PHONY: demohelm | ||
demohelm: cleandemo | ||
helm template flytedemo ./ -f flytectldemo.yaml -n flyte --dependency-update --debug --create-namespace -a rbac.authorization.k8s.io/v1 -a networking.k8s.io/v1/Ingress -a apiextensions.k8s.io/v1/CustomResourceDefinition > $(DEMO_GENERATED_FILE) |
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,30 @@ | ||
# flyte-binary | ||
|
||
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square) | ||
|
||
Chart for basic single Flyte executable deployment | ||
|
||
## Values | ||
|
||
| Key | Type | Default | Description | | ||
|-----|------|---------|-------------| | ||
| database.dbname | string | `"flyteadmin"` | | | ||
| database.host | string | `"127.0.0.1"` | | | ||
| database.password | string | `""` | | | ||
| database.port | int | `5432` | | | ||
| database.username | string | `"postgres"` | | | ||
| images.flyte.pullPolicy | string | `"IfNotPresent"` | | | ||
| images.flyte.repository | string | `"ghcr.io/flyteorg/flyte-sandbox"` | | | ||
| images.flyte.tag | string | `"flytebinary_1007"` | | | ||
| images.postgres.pullPolicy | string | `"IfNotPresent"` | | | ||
| images.postgres.repository | string | `"postgres"` | | | ||
| images.postgres.tag | string | `"15-alpine"` | | | ||
| logger.level | int | `1` | | | ||
| networking.host | bool | `true` | | | ||
| paths.externalFlyteConfig | string | `""` | | | ||
| proxy.enabled | bool | `false` | | | ||
| storage.metadataContainer | string | `"my-s3-bucket"` | | | ||
| storage.region | string | `"my-region"` | | | ||
| storage.type | string | `"minio"` | | | ||
| storage.userDataContainer | string | `"my-s3-bucket"` | | | ||
|
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
4 changes: 4 additions & 0 deletions
4
charts/flyte-binary/cluster-resource-templates/namespace.yaml
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,4 @@ | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: {{ namespace }} |
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,16 @@ | ||
networking: | ||
host: false | ||
|
||
storage: | ||
metadataContainer: flyte-single-binary-test | ||
userDataContainer: flyte-single-binary-test/userdata | ||
type: s3 | ||
region: us-east-2 | ||
|
||
database: | ||
username: postgres | ||
host: trinity1.cmp0wwpbez1r.us-east-2.rds.amazonaws.com | ||
password: awesomesauce | ||
|
||
proxy: | ||
enabled: 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,9 @@ | ||
image: | ||
fqn: "flyte" | ||
|
||
database: | ||
port: 30001 | ||
|
||
paths: | ||
# Specifying because this is mounted in by flytectl. | ||
externalFlyteConfig: "/srv/flyte/flyte.yaml" |
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,6 @@ | ||
|
||
|
||
Your Flyte binary installation should be run with this config: | ||
```yaml | ||
{{ tpl (.Files.Get "_flyte_config.yaml") $ }} | ||
``` |
Oops, something went wrong.