Skip to content

Commit ead15be

Browse files
committed
feat: add RESOLV
1 parent ead588e commit ead15be

18 files changed

Lines changed: 32 additions & 26 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.6.2"
1+
__version__ = "2.7.1"

helm/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ name: pragma-sdk
33
description: A helm chart configuration for the SDK
44
version: 0.1.0
55
appVersion: "1.0.0"
6-
icon: https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/logo/logo.svg
6+
icon: https://raw.githubusercontent.com/kubernetes/kubernetes/refs/heads/master/logo/logo.svg

helm/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ Create the name of the service account to use
5757
{{- else }}
5858
{{- default "default" .Values.serviceAccount.name }}
5959
{{- end }}
60-
{{- end }}
60+
{{- end }}

helm/templates/deployment.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ kind: Deployment
33
metadata:
44
name: {{ include "pragma-sdk.fullname" . }}
55
annotations:
6-
argocd.argoproj.io/sync-wave: "2"
6+
argocd.argoproj.io/sync-wave: "2"
77
labels:
88
{{- include "pragma-sdk.labels" . | nindent 4 }}
99
spec:
@@ -42,7 +42,7 @@ spec:
4242
- containerPort: {{ .containerPort }}
4343
name: {{ .portName }}
4444
protocol: {{ .protocol }}
45-
{{- end }}
45+
{{- end }}
4646

4747
{{- with .Values.env }}
4848
env:
@@ -52,7 +52,7 @@ spec:
5252
envFrom:
5353
- secretRef:
5454
name: {{ .Values.envFromSecret.secretName }}
55-
{{- end }}
55+
{{- end }}
5656
{{- with .Values.livenessProbe }}
5757
livenessProbe:
5858
{{- toYaml . | nindent 12 }}
@@ -66,7 +66,7 @@ spec:
6666
volumeMounts:
6767
- name: openapi-volume
6868
mountPath: /app/openapi
69-
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
69+
terminationGracePeriodSeconds: {{ .Values.terminationGracePeriodSeconds }}
7070
{{- with .Values.nodeSelector }}
7171
nodeSelector:
7272
{{- toYaml . | nindent 8 }}

helm/templates/externalSecret.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ spec:
1515
dataFrom:
1616
- extract:
1717
key: {{ .Values.gcpSecrets.externalSecret.secretPath }}
18-
{{- end }}
18+
{{- end }}

helm/templates/hpa.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ kind: HorizontalPodAutoscaler
44
metadata:
55
name: {{ include "pragma-sdk.fullname" . }}
66
annotations:
7-
argocd.argoproj.io/sync-wave: "2"
7+
argocd.argoproj.io/sync-wave: "2"
88
labels:
99
{{- include "pragma-sdk.labels" . | nindent 4 }}
1010
spec:
@@ -31,4 +31,4 @@ spec:
3131
type: Utilization
3232
averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }}
3333
{{- end }}
34-
{{- end }}
34+
{{- end }}

helm/templates/ingress.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ metadata:
1111
name: {{ $fullname }}-ingress
1212
{{- end }}
1313
annotations:
14-
argocd.argoproj.io/sync-wave: "2"
15-
{{- with $val.annotations }}
14+
argocd.argoproj.io/sync-wave: "2"
15+
{{- with $val.annotations }}
1616
{{- toYaml . | nindent 4 }}
1717
{{- end }}
1818
spec:
@@ -40,8 +40,8 @@ spec:
4040
backend:
4141
service:
4242
name: {{ $fullname }}
43-
port:
43+
port:
4444
number: {{ .servicePort }}
4545
{{- end }}
4646
{{- end }}
47-
{{- end }}
47+
{{- end }}

helm/templates/pdb.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: policy/v1
33
kind: PodDisruptionBudget
44
metadata:
55
annotations:
6-
argocd.argoproj.io/sync-wave: "2"
6+
argocd.argoproj.io/sync-wave: "2"
77
name: {{ include "pragma-sdk.fullname" . }}
88
labels:
99
{{- include "pragma-sdk.labels" . | nindent 4 }}
@@ -17,4 +17,4 @@ spec:
1717
selector:
1818
matchLabels:
1919
{{- include "pragma-sdk.selectorLabels" . | nindent 6 }}
20-
{{- end }}
20+
{{- end }}

helm/templates/secretStore.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ spec:
99
provider:
1010
gcpsm:
1111
projectID: {{ .Values.gcpSecrets.projectId }}
12-
{{- end }}
12+
{{- end }}

helm/templates/serviceaccount.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ metadata:
66
labels:
77
{{- include "pragma-sdk.labels" . | nindent 4 }}
88
annotations:
9-
argocd.argoproj.io/sync-wave: "2"
9+
argocd.argoproj.io/sync-wave: "2"
1010
{{- with .Values.serviceAccount.annotations }}
1111
{{- toYaml . | nindent 4 }}
1212
{{- end }}
1313
automountServiceAccountToken: {{ .Values.serviceAccount.automount }}
14-
{{- end }}
14+
{{- end }}

0 commit comments

Comments
 (0)