Skip to content

Commit

Permalink
feat: add spark cluster
Browse files Browse the repository at this point in the history
  • Loading branch information
reinthal committed Dec 11, 2024
1 parent b084d0e commit 6a0b7d5
Show file tree
Hide file tree
Showing 5 changed files with 438 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/base/kubeflow/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: kubeflow
resources:
- spark.yaml
- meta.yaml
# frontend
#- ingress.yaml
6 changes: 6 additions & 0 deletions apps/base/kubeflow/meta.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
apiVersion: v1
kind: Namespace
metadata:
name: kubeflow
labels:
toolkit.fluxcd.io/tenant: kog-team
27 changes: 27 additions & 0 deletions apps/base/kubeflow/spark.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: source.toolkit.fluxcd.io/v1beta2
kind: HelmRepository
metadata:
name: spark-operator
namespace: kubeflow
spec:
interval: 24h
url: https://kubeflow.github.io/spark-operator
---
apiVersion: helm.toolkit.fluxcd.io/v2beta2
kind: HelmRelease
metadata:
name: spark-operator
namespace: kubeflow
spec:
interval: 5m
chart:
spec:
chart: spark-operator
version: "2.1.0"
sourceRef:
kind: HelmRepository
name: spark-operator
namespace: kubeflow
interval: 24h
values: []
1 change: 1 addition & 0 deletions apps/staging/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ resources:
- ../base/cyberchef
- ../base/trino
- ../base/elastic
- ../base/kubeflow
Loading

0 comments on commit 6a0b7d5

Please sign in to comment.