-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Continuous Integration
committed
Sep 18, 2024
1 parent
5dcdb17
commit 297e7d9
Showing
8 changed files
with
534 additions
and
362 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
-----BEGIN PGP SIGNED MESSAGE----- | ||
Hash: SHA512 | ||
|
||
annotations: | ||
artifacthub.io/category: monitoring-logging | ||
artifacthub.io/license: MIT | ||
artifacthub.io/prerelease: "false" | ||
artifacthub.io/signKey: | | ||
fingerprint: 83F2C1DDF58A052464C4A1729D87E494AC016697 | ||
url: https://keybase.io/oneuptime/pgp_keys.asc | ||
apiVersion: v2 | ||
appVersion: 7.0.3062 | ||
dependencies: | ||
- - condition: postgresql.enabled | ||
name: postgresql | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 14.0.0 | ||
- - condition: redis.enabled | ||
name: redis | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 18.19.1 | ||
- - condition: clickhouse.enabled | ||
name: clickhouse | ||
repository: https://charts.bitnami.com/bitnami | ||
version: 5.1.0 | ||
description: The Complete Open-Source Observability Platform | ||
icon: https://raw.githubusercontent.com/OneUptime/oneuptime/master/Home/Static/img/OneUptimePNG/1.png | ||
name: oneuptime | ||
type: application | ||
version: 7.0.3062 | ||
|
||
... | ||
files: | ||
oneuptime-7.0.3062.tgz: sha256:f196aa983fb06be43d0a8ea2d3a24bfff13d6fa0776dd42902a45b1fa613cac5 | ||
-----BEGIN PGP SIGNATURE----- | ||
|
||
wsFcBAEBCgAQBQJm6vWtCRCdh+SUrAFmlwAADjUQAKETpRJ3cradByqrQp2nFvU7 | ||
+6ctzRLKaR6nKFhenEuKLw+OmQA7AzAU1GbWd1AQRmEW6RjAk0Vf0TeV9z7DpAIN | ||
m1GZeC+/zD0bKbSK0MH9qqu8BvJwf3CVjldsF3HDZtDs4JBko6nn31oQbONRj7en | ||
SGu23w8G6XRx98BDNhLy11/mwaVZG0U1f4+56bt8CatZY8+x6aAt/V9rVHqtjRQ7 | ||
68zvl1O2V34jZE4devCVUqv7ZF0oIgH44/q5M6ZJZr0ruSYOJYteqZ2Pse+t139n | ||
pefEfrxZiD1wmnvUjK+lp50nw4dCLDPgamjcwZmFRRpwGpenkztArVDZAJpHt3Sc | ||
Nzq6tUfvL2Us4vLrd5/R7F5iTVEOYI6V7stogQZK/OsHeoPKynW1IC95sEe7r7nU | ||
DFIOal14/yE0iMQAw1liE9lWT7b+WiwD+j0tRaU9ht4qNyHRQsmC9vcnvKMPwBCI | ||
KYHv/UhuD4mw1244hnXKgiWpybb5Jz0UEm4aqfHTKH98Q/nCW+WSRY07A7Hj4nvD | ||
dNZH+FS/06BlIGoLCRQrTlHUOjLbow9A4szClPn7wQJMFzYZTyt09E4mYOiZk+9q | ||
fhNRPj5Pp76OIbQIVuReWYOgZACCFcRxNKoYSb7WsN15+zDv/Hf8LNA3hH+eJIQw | ||
TVN1FOb0yfxLfdU8LZja | ||
=w+DN | ||
-----END PGP SIGNATURE----- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# OneUptime workflow Deployment | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {{ printf "%s-%s" $.Release.Name "workflow" }} | ||
namespace: {{ $.Release.Namespace }} | ||
labels: | ||
app: {{ printf "%s-%s" $.Release.Name "workflow" }} | ||
app.kubernetes.io/part-of: oneuptime | ||
app.kubernetes.io/managed-by: Helm | ||
appname: oneuptime | ||
date: "{{ now | unixEpoch }}" | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: {{ printf "%s-%s" $.Release.Name "workflow" }} | ||
replicas: {{ $.Values.deployment.replicaCount }} | ||
template: | ||
metadata: | ||
labels: | ||
app: {{ printf "%s-%s" $.Release.Name "workflow" }} | ||
date: "{{ now | unixEpoch }}" | ||
appname: oneuptime | ||
spec: | ||
{{- if $.Values.imagePullSecrets }} | ||
imagePullSecrets: | ||
{{- toYaml $.Values.imagePullSecrets | nindent 8 }} | ||
{{- end }} | ||
{{- if $.Values.podSecurityContext }} | ||
securityContext: {{- $.Values.podSecurityContext | toYaml | nindent 8 }} | ||
{{- end }} | ||
{{- if $.Values.affinity }} | ||
affinity: {{- $.Values.affinity | toYaml | nindent 8 }} | ||
{{- end }} | ||
{{- if $.Values.tolerations }} | ||
tolerations: {{- $.Values.tolerations | toYaml | nindent 8 }} | ||
{{- end }} | ||
{{- if $.Values.nodeSelector }} | ||
nodeSelector: {{- $.Values.nodeSelector | toYaml | nindent 8 }} | ||
{{- end }} | ||
containers: | ||
- image: {{ printf "%s/%s/%s:%s" $.Values.image.registry $.Values.image.repository "workflow" $.Values.image.tag }} | ||
name: {{ printf "%s-%s" $.Release.Name "workflow" }} | ||
# Liveness probe | ||
livenessProbe: | ||
httpGet: | ||
path: /status/live | ||
port: {{ $.Values.port.workflow }} | ||
initialDelaySeconds: 300 | ||
periodSeconds: 10 | ||
timeoutSeconds: 30 | ||
# Readyness Probe | ||
readinessProbe: | ||
httpGet: | ||
path: /status/ready | ||
port: {{ $.Values.port.workflow }} | ||
initialDelaySeconds: 300 | ||
periodSeconds: 10 | ||
timeoutSeconds: 30 | ||
{{- if $.Values.containerSecurityContext }} | ||
securityContext: {{- $.Values.containerSecurityContext | toYaml | nindent 12 }} | ||
{{- end }} | ||
imagePullPolicy: {{ $.Values.image.pullPolicy }} | ||
env: | ||
{{- include "oneuptime.env.common" . | nindent 12 }} | ||
{{- include "oneuptime.env.commonServer" . | nindent 12 }} | ||
{{- include "oneuptime.env.oneuptimeSecret" . | nindent 12 }} | ||
- name: PORT | ||
value: {{ $.Values.port.workflow | quote }} | ||
ports: | ||
- containerPort: {{ $.Values.port.workflow }} | ||
protocol: TCP | ||
name: http | ||
restartPolicy: {{ $.Values.image.restartPolicy }} | ||
|
||
--- | ||
|
||
# OneUptime app Service | ||
{{- $workflowPorts := dict "port" $.Values.port.workflow -}} | ||
{{- $workflowServiceArgs := dict "ServiceName" "workflow" "Ports" $workflowPorts "Release" $.Release "Values" $.Values -}} | ||
{{- include "oneuptime.service" $workflowServiceArgs }} | ||
--- | ||
|
||
# OneUptime app autoscaler | ||
{{- $workflowAutoScalerArgs := dict "ServiceName" "workflow" "Release" $.Release "Values" $.Values -}} | ||
{{- include "oneuptime.autoscaler" $workflowAutoScalerArgs }} | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -209,7 +209,7 @@ port: | |
isolatedVM: 4572 | ||
home: 1444 | ||
worker: 1445 | ||
|
||
workflow: 3099 | ||
|
||
testServer: | ||
enabled: false | ||
|