Skip to content
Snippets Groups Projects
Commit f273fb87 authored by Lorenz Boguhn's avatar Lorenz Boguhn
Browse files

Change helm to use default values

parent f050299c
No related branches found
No related tags found
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
...@@ -23,11 +23,7 @@ spec: ...@@ -23,11 +23,7 @@ spec:
value: {{ .Values.operator.namespace}} value: {{ .Values.operator.namespace}}
- name: lag-analysis - name: lag-analysis
image: benediktwetzel/lag-analysis image: benediktwetzel/lag-analysis
env:
- name: PORT
value: "8080"
ports: ports:
- containerPort: 8080 - containerPort: 80
name: analysis name: analysis
{{- end }} {{- end }}
...@@ -15,5 +15,5 @@ rbac: ...@@ -15,5 +15,5 @@ rbac:
create: true create: true
serviceAnalysis: serviceAnalysis:
type: NodePort type: ClusterIP
port: 8080 port: 80
...@@ -41,7 +41,7 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \ ...@@ -41,7 +41,7 @@ RUN microdnf install curl ca-certificates ${JAVA_PACKAGE} \
&& echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security && echo "securerandom.source=file:/dev/urandom" >> /etc/alternatives/jre/lib/security/java.security
# Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size. # Configure the JAVA_OPTIONS, you can add -XshowSettings:vm to also display the heap size.
ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager -Dquarkus.package.main-class=TheodoliteOperator" ENV JAVA_OPTIONS="-Dquarkus.http.host=0.0.0.0 -Djava.util.logging.manager=org.jboss.logmanager.LogManager"
COPY build/lib/* /deployments/lib/ COPY build/lib/* /deployments/lib/
COPY build/*-runner.jar /deployments/app.jar COPY build/*-runner.jar /deployments/app.jar
COPY config/ /deployments/config/ COPY config/ /deployments/config/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment