Skip to content
Merged
Changes from 3 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
8 changes: 8 additions & 0 deletions roles/k8s_start_services/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,14 @@
when: "'amdgpu-device-plugin' not in k8s_pods.stdout"
tags: init

- name: Install Spark Operator
command: "helm repo add spark-operator https://googlecloudplatform.github.io/spark-on-k8s-operator"
changed_when: true
tags: init

- name: Install Spark Operator Namespace
command: "helm install my-release spark-operator/spark-operator --namespace spark-operator --create-namespace"

- name: Deploy Volcano Scheduling
command: "kubectl apply -f https://raw.githubusercontent.com/volcano-sh/volcano/master/installer/volcano-development.yaml"
changed_when: true
Expand Down