Skip to content

Commit

Permalink
[ci skip] 🤖 Create new App test-misael (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoluisi authored Apr 20, 2024
1 parent b3ab234 commit 71953a1
Show file tree
Hide file tree
Showing 4 changed files with 122 additions and 0 deletions.
3 changes: 3 additions & 0 deletions apps/test-misael/base/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: test-misael
11 changes: 11 additions & 0 deletions apps/test-misael/overlays/dev/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"appName": "test-misael",
"userGivenName": "test-misael",
"destNamespace": "test-misael",
"destServer": "https://kubernetes.default.svc",
"srcPath": "apps/test-misael/overlays/dev",
"srcRepoURL": "https://github.com/devxp-tech/gitops.git",
"srcTargetRevision": "",
"CreateNamespace": true,
"labels": null
}
55 changes: 55 additions & 0 deletions apps/test-misael/overlays/dev/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: test-misael
resources:
- ../../base
helmCharts:
- name: devxp-app
releaseName: devxp-app
version: 0.2.20
repo: https://devxp-tech.github.io/helm-charts
valuesInline:
name: test-misael
image:
repository: ghcr.io/devxp-tech/test-misael
tag: latest
autoscaling:
enabled: true
minReplicas: 1
maxReplicas: 2
targetCPUUtilizationPercentage: 80
resources:
requests:
memory: 64Mi
cpu: 50m
limits:
memory: 128Mi
cpu: 100m
network:
enabled: true
domain: devxp-tech.io
service:
type: ClusterIP
port: 80
probe:
enabled: true
livenessProbe:
path: /health-check/liveness
port: 8080
readinessProbe:
path: /health-check/readiness
port: 8080
deploy:
enabled: true
sa:
enabled: true
quota:
enabled: true
requests:
memory: 1Gi
cpu: 1
limits:
memory: 2Gi
cpu: 2


53 changes: 53 additions & 0 deletions apps/test-misael/overlays/prd/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: test-misael
resources:
- ../../base
helmCharts:
- name: devxp-app
releaseName: devxp-app
version: 0.1.81
repo: https://devxp-tech.github.io/helm-charts
valuesInline:
name: test-misael
image:
repository: ghcr.io/devxp-tech/test-misael
tag: latest
autoscaling:
enabled: true
minReplicas: 1
maxReplicas: 2
targetCPUUtilizationPercentage: 80
resources:
requests:
memory: 64Mi
cpu: 50m
limits:
memory: 128Mi
cpu: 100m
network:
enabled: true
domain: devxp-tech.io
service:
type: ClusterIP
port: 80
probe:
enabled: true
livenessProbe:
path: /health-check/liveness
port: 8080
readinessProbe:
path: /health-check/readiness
port: 8080
deploy:
enabled: true
sa:
enabled: true
quota:
enabled: true
requests:
memory: 1Gi
cpu: 1
limits:
memory: 2Gi
cpu: 2

0 comments on commit 71953a1

Please sign in to comment.