deployments/scheduler/plugin.yaml (99 lines of code) (raw):
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: yunikorn-admin
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: yunikorn-rbac
subjects:
- kind: ServiceAccount
name: yunikorn-admin
namespace: default
roleRef:
kind: ClusterRole
name: cluster-admin
apiGroup: rbac.authorization.k8s.io
---
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
app: yunikorn
name: yunikorn-scheduler
spec:
replicas: 1
selector:
matchLabels:
app: yunikorn
template:
metadata:
labels:
app: yunikorn
component: yunikorn-scheduler
name: yunikorn-scheduler
spec:
serviceAccountName: yunikorn-admin
containers:
- name: yunikorn-scheduler-k8s
image: apache/yunikorn:scheduler-plugin-latest
imagePullPolicy: IfNotPresent
ports:
- name: http1
containerPort: 9080
protocol: TCP
env:
- name: NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
resources:
requests:
cpu: 1
memory: 1Gi
limits:
cpu: 4
memory: 2Gi
livenessProbe:
httpGet:
path: /ws/v1/scheduler/healthcheck
port: 9080
initialDelaySeconds: 20
periodSeconds: 600
failureThreshold: 1
- name: yunikorn-scheduler-web
image: apache/yunikorn:web-latest
imagePullPolicy: IfNotPresent
ports:
- name: http2
containerPort: 9889
protocol: TCP
resources:
requests:
memory: "100Mi"
cpu: "100m"
limits:
memory: "500Mi"
cpu: "200m"
---
apiVersion: v1
kind: Service
metadata:
name: yunikorn-service
labels:
app: yunikorn-service
spec:
ports:
- port: 9080
targetPort: http1
protocol: TCP
name: yunikorn-core
- port: 9889
targetPort: http2
protocol: TCP
name: yunikorn-service
selector:
app: yunikorn
type: LoadBalancer