Skip to content
Snippets Groups Projects
Commit 25e62a32 authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

Introduce lag analysis

parent 2adb1cf6
Branches
Tags
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!109Introduce a Helm chart for the Theodolite operator,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus
{{- if .Values.operator.enabled -}}
apiVersion: v1
kind: Service
metadata:
name: {{ include "theodolite-operator.fullname" . }}
labels:
{{- include "theodolite-operator.labels" . | nindent 4 }}
spec:
type: {{ .Values.serviceAnalysis.type }}
ports:
- port: {{ .Values.serviceAnalysis.port }}
protocol: TCP
selector:
{{- include "theodolite-operator.fullname" . | nindent 4 }}
{{- end }}
\ No newline at end of file
...@@ -16,11 +16,11 @@ spec: ...@@ -16,11 +16,11 @@ spec:
terminationGracePeriodSeconds: 0 terminationGracePeriodSeconds: 0
serviceAccountName: {{ include "theodolite-operator.serviceAccountName" . }} serviceAccountName: {{ include "theodolite-operator.serviceAccountName" . }}
containers: containers:
- name: thedolite - name: theodolite
image: lorenzboguhn/thedolite:latest image: lorenzboguhn/thedolite:latest
env: env:
- name: KUBECONFIG
value: "~/.kube/config"
- name: NAMESPACE - name: NAMESPACE
value: {{ .Values.operator.namespace}} value: {{ .Values.operator.namespace}}
- name: lag-analysis
image: benediktwetzel/lag-analysis
{{- end }} {{- end }}
...@@ -13,3 +13,7 @@ serviceAccount: ...@@ -13,3 +13,7 @@ serviceAccount:
rbac: rbac:
create: true create: true
serviceAnalysis:
type: ClusterIP
port: 80
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment