Skip to content

fix: restore some manifests of signal processing demo #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions stacks/signal-processing/serviceaccount.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: spark
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: spark
subjects:
- kind: ServiceAccount
name: spark
roleRef:
kind: Role
name: spark-role
apiGroup: rbac.authorization.k8s.io
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: spark-role
rules:
- apiGroups: [""]
resources: [pods]
verbs: ["*"]
- apiGroups: [""]
resources: [services]
verbs: ["*"]
- apiGroups: [""]
resources: [configmaps]
verbs: ["*"]
- apiGroups: [""]
resources: [persistentvolumeclaims]
verbs: ["*"]
24 changes: 24 additions & 0 deletions stacks/signal-processing/spark_driver_service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
apiVersion: v1
kind: Service
metadata:
name: driver-service
spec:
selector:
app: jupyterhub
component: singleuser-server
hub.jupyter.org/username: admin
ports:
- name: driver
protocol: TCP
port: 2222
targetPort: 2222
- name: blockmanager
protocol: TCP
port: 7777
targetPort: 7777
- name: spark-driver-ui-port
port: 4040
protocol: TCP
targetPort: 4040
type: ClusterIP
4 changes: 2 additions & 2 deletions stacks/stacks-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -631,8 +631,8 @@ stacks:
- helmChart: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/_templates/postgresql-timescaledb.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/nifi-kafka-druid-superset-s3/zookeeper.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/signal-processing/nifi.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/jupyterhub-pyspark-hdfs/serviceaccount.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/jupyterhub-pyspark-hdfs/spark_driver_service.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/signal-processing/serviceaccount.yaml
- plainYaml: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/signal-processing/spark_driver_service.yaml
- helmChart: https://raw.githubusercontent.com/stackabletech/demos/main/stacks/signal-processing/jupyterhub.yaml
parameters:
- name: nifiAdminPassword
Expand Down