Skip to content

Commit

Permalink
Add redis to flyte-sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
jeevb committed Sep 1, 2023
1 parent 911b48c commit 7df67de
Show file tree
Hide file tree
Showing 7 changed files with 1,275 additions and 6 deletions.
7 changes: 5 additions & 2 deletions charts/flyte-sandbox/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,8 @@ dependencies:
- name: postgresql
repository: https://charts.bitnami.com/bitnami
version: 12.1.9
digest: sha256:e7155e540bbdb98f690eb12e2bd301a19d8b36833336f6991410cb44d8d9bb5e
generated: "2023-03-31T09:25:07.80904-07:00"
- name: redis
repository: https://charts.bitnami.com/bitnami
version: 17.15.6
digest: sha256:1bcc5f102768a19c19d444b3460dabd0f90847b2d4423134f0ce9c7aa0a256ea
generated: "2023-08-31T16:46:00.478623-07:00"
4 changes: 4 additions & 0 deletions charts/flyte-sandbox/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ dependencies:
version: 12.1.9
repository: https://charts.bitnami.com/bitnami
condition: postgresql.enabled
- name: redis
version: 17.15.6
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled
8 changes: 8 additions & 0 deletions charts/flyte-sandbox/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ A Helm chart for the Flyte local sandbox
| file://../flyte-binary | flyte-binary | v0.1.10 |
| https://charts.bitnami.com/bitnami | minio | 12.1.1 |
| https://charts.bitnami.com/bitnami | postgresql | 12.1.9 |
| https://charts.bitnami.com/bitnami | redis | 18.0.1 |
| https://helm.twun.io/ | docker-registry | 2.2.2 |
| https://kubernetes.github.io/dashboard/ | kubernetes-dashboard | 6.0.0 |

Expand Down Expand Up @@ -92,6 +93,13 @@ A Helm chart for the Flyte local sandbox
| postgresql.volumePermissions.enabled | bool | `true` | |
| postgresql.volumePermissions.image.pullPolicy | string | `"Never"` | |
| postgresql.volumePermissions.image.tag | string | `"sandbox"` | |
| redis.auth.enabled | bool | `false` | |
| redis.enabled | bool | `true` | |
| redis.image.pullPolicy | string | `"Never"` | |
| redis.image.tag | string | `"sandbox"` | |
| redis.master.service.nodePorts.redis | int | `30004` | |
| redis.master.service.type | string | `"NodePort"` | |
| redis.replica.replicaCount | int | `0` | |
| sandbox.buildkit.enabled | bool | `true` | |
| sandbox.buildkit.image.pullPolicy | string | `"Never"` | |
| sandbox.buildkit.image.repository | string | `"moby/buildkit"` | |
Expand Down
15 changes: 15 additions & 0 deletions charts/flyte-sandbox/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,21 @@ postgresql:
tag: sandbox
pullPolicy: Never

redis:
enabled: true
image:
tag: sandbox
pullPolicy: Never
auth:
enabled: false
master:
service:
type: NodePort
nodePorts:
redis: 30004
replica:
replicaCount: 0

sandbox:
# dev Routes requests to an instance of Flyte running locally on a developer's
# development environment. This is only usable if the flyte-binary chart is disabled.
Expand Down
1 change: 1 addition & 0 deletions docker/sandbox-bundled/images/manifest.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
docker.io/bitnami/bitnami-shell:sandbox=bitnami/bitnami-shell:11-debian-11-r76
docker.io/bitnami/minio:sandbox=bitnami/minio:2023.1.25-debian-11-r0
docker.io/bitnami/postgresql:sandbox=bitnami/postgresql:15.1.0-debian-11-r20
docker.io/bitnami/redis:sandbox=bitnami/redis:7.2.0-debian-11-r3
docker.io/envoyproxy/envoy:sandbox=envoyproxy/envoy:v1.23-latest
docker.io/kubernetesui/dashboard:sandbox=kubernetesui/dashboard:v2.7.0
docker.io/library/registry:sandbox=registry:2.8.1
Expand Down
Loading

0 comments on commit 7df67de

Please sign in to comment.