fix: update preprod atlantis and sorcerer
This commit is contained in:
@@ -31,7 +31,7 @@ spec:
|
|||||||
chart: redis
|
chart: redis
|
||||||
helm:
|
helm:
|
||||||
valueFiles:
|
valueFiles:
|
||||||
- $values/values/redis/values-prod.yaml
|
- $values/values/atlantis/redis.yaml
|
||||||
ignoreDifferences:
|
ignoreDifferences:
|
||||||
- kind: Secret
|
- kind: Secret
|
||||||
name: azure-keyvault
|
name: azure-keyvault
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ spec:
|
|||||||
chart: redis
|
chart: redis
|
||||||
helm:
|
helm:
|
||||||
valueFiles:
|
valueFiles:
|
||||||
- $values/values/redis/values-staging.yaml
|
- $values/values/atlantis/staging/redis.yaml
|
||||||
ignoreDifferences:
|
ignoreDifferences:
|
||||||
- kind: Secret
|
- kind: Secret
|
||||||
name: azure-keyvault
|
name: azure-keyvault
|
||||||
|
|||||||
+19
-19
@@ -1,10 +1,10 @@
|
|||||||
apiVersion: argoproj.io/v1alpha1
|
apiversion: argoproj.io/v1alpha1
|
||||||
kind: Application
|
kind: application
|
||||||
metadata:
|
metadata:
|
||||||
name: staging-sorcerer
|
name: staging-sorcerer
|
||||||
namespace: argocd
|
namespace: argocd
|
||||||
annotations:
|
annotations:
|
||||||
argocd.argoproj.io/sync-options: SkipDryRunOnMissingResource=true
|
argocd.argoproj.io/sync-options: skipdryrunonmissingresource=true
|
||||||
finalizers:
|
finalizers:
|
||||||
- resources-finalizer.argocd.argoproj.io
|
- resources-finalizer.argocd.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
@@ -13,11 +13,11 @@ spec:
|
|||||||
server: https://10.255.241.99:4443
|
server: https://10.255.241.99:4443
|
||||||
project: atlantis
|
project: atlantis
|
||||||
sources:
|
sources:
|
||||||
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
- repourl: https://gitlab.com/oceanbox/manifests.git
|
||||||
targetRevision: nixidy
|
targetrevision: nixidy
|
||||||
ref: values
|
ref: values
|
||||||
- repoURL: https://gitlab.com/oceanbox/manifests.git
|
- repourl: https://gitlab.com/oceanbox/manifests.git
|
||||||
targetRevision: nixidy
|
targetrevision: nixidy
|
||||||
path: values/sorcerer
|
path: values/sorcerer
|
||||||
plugin:
|
plugin:
|
||||||
name: kustomize-helm-with-rewrite
|
name: kustomize-helm-with-rewrite
|
||||||
@@ -26,23 +26,23 @@ spec:
|
|||||||
string: staging
|
string: staging
|
||||||
- name: hostname
|
- name: hostname
|
||||||
string: sorcerer.ekman.oceanbox.io
|
string: sorcerer.ekman.oceanbox.io
|
||||||
- repoURL: https://charts.bitnami.com/bitnami
|
- repourl: https://charts.bitnami.com/bitnami
|
||||||
targetRevision: 20.1.7
|
targetrevision: 20.1.7
|
||||||
chart: redis
|
chart: redis
|
||||||
helm:
|
helm:
|
||||||
valueFiles:
|
valuefiles:
|
||||||
- $values/values/redis/values-staging.yaml
|
- $values/values/sorcerer/staging/redis.yaml
|
||||||
ignoreDifferences:
|
ignoredifferences:
|
||||||
- kind: Secret
|
- kind: secret
|
||||||
name: azure-keyvault
|
name: azure-keyvault
|
||||||
jqPathExpressions:
|
jqpathexpressions:
|
||||||
- '.data'
|
- '.data'
|
||||||
- '.metadata.labels'
|
- '.metadata.labels'
|
||||||
- '.metadata.annotations'
|
- '.metadata.annotations'
|
||||||
syncPolicy:
|
syncpolicy:
|
||||||
syncOptions:
|
syncoptions:
|
||||||
- CreateNamespace=true
|
- createnamespace=true
|
||||||
- ApplyOutOfSyncOnly=true
|
- applyoutofsynconly=true
|
||||||
# automated:
|
# automated:
|
||||||
# prune: true
|
# prune: true
|
||||||
# selfHeal: false
|
# selfheal: false
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
architecture: replication
|
||||||
|
|
||||||
|
replica:
|
||||||
|
replicaCount: 2
|
||||||
|
|
||||||
|
auth:
|
||||||
|
enabled: true
|
||||||
|
sentinel: true
|
||||||
|
password: ""
|
||||||
|
usePasswordFiles: false
|
||||||
|
existingSecretPasswordKey: ""
|
||||||
|
existingSecret: prod-atlantis-redis
|
||||||
|
|
||||||
|
master:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
ephemeral-storage: 1024Mi
|
||||||
|
memory: 192Mi
|
||||||
|
requests:
|
||||||
|
cpu: 150m
|
||||||
|
ephemeral-storage: 50Mi
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
architecture: standalone
|
||||||
|
|
||||||
|
replica:
|
||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
auth:
|
||||||
|
enabled: true
|
||||||
|
sentinel: true
|
||||||
|
password: ""
|
||||||
|
usePasswordFiles: false
|
||||||
|
existingSecretPasswordKey: ""
|
||||||
|
existingSecret: staging-atlantis-redis
|
||||||
|
|
||||||
|
master:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
ephemeral-storage: 1024Mi
|
||||||
|
memory: 192Mi
|
||||||
|
requests:
|
||||||
|
cpu: 150m
|
||||||
|
ephemeral-storage: 50Mi
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
tag: v2.96.0
|
tag: v2.96.1
|
||||||
|
|
||||||
podAnnotations:
|
podAnnotations:
|
||||||
dapr.io/app-id: "preprod-atlantis"
|
dapr.io/app-id: "preprod-atlantis"
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
|
||||||
|
architecture: standalone
|
||||||
|
|
||||||
|
replica:
|
||||||
|
replicaCount: 1
|
||||||
|
|
||||||
|
auth:
|
||||||
|
enabled: true
|
||||||
|
sentinel: true
|
||||||
|
password: ""
|
||||||
|
usePasswordFiles: false
|
||||||
|
existingSecretPasswordKey: ""
|
||||||
|
existingSecret: staging-sorcerer-redis
|
||||||
|
|
||||||
|
master:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
ephemeral-storage: 1024Mi
|
||||||
|
memory: 192Mi
|
||||||
|
requests:
|
||||||
|
cpu: 150m
|
||||||
|
ephemeral-storage: 50Mi
|
||||||
|
memory: 128Mi
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
image:
|
image:
|
||||||
tag: v4.16.0
|
tag: v4.16.1
|
||||||
|
|
||||||
podAnnotations:
|
podAnnotations:
|
||||||
dapr.io/enabled: "true"
|
dapr.io/enabled: "true"
|
||||||
|
|||||||
Reference in New Issue
Block a user