53 lines
1.5 KiB
YAML
53 lines
1.5 KiB
YAML
#
|
|
# Copyright 2018 Google LLC
|
|
#
|
|
# Licensed 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
|
|
#
|
|
# https://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: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: sparkoperator
|
|
namespace: spark-operator
|
|
labels:
|
|
app.kubernetes.io/name: sparkoperator
|
|
app.kubernetes.io/version: v2.4.5-v1beta2
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/name: sparkoperator
|
|
app.kubernetes.io/version: v2.4.5-v1beta2
|
|
strategy:
|
|
type: Recreate
|
|
template:
|
|
metadata:
|
|
annotations:
|
|
prometheus.io/scrape: "true"
|
|
prometheus.io/port: "10254"
|
|
prometheus.io/path: "/metrics"
|
|
labels:
|
|
app.kubernetes.io/name: sparkoperator
|
|
app.kubernetes.io/version: v2.4.5-v1beta2
|
|
spec:
|
|
serviceAccountName: sparkoperator
|
|
containers:
|
|
- name: sparkoperator
|
|
image: gcr.io/spark-operator/spark-operator:v2.4.5-v1beta2-latest
|
|
imagePullPolicy: Always
|
|
ports:
|
|
- containerPort: 10254
|
|
args:
|
|
- -logtostderr
|
|
- -enable-metrics=true
|
|
- -metrics-labels=app_type |