Skip to content

[ci skip] πŸ€– Create new App hashgraph-ssi-service #388

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions apps/hashgraph-ssi-service/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: hashgraph-ssi-service
11 changes: 11 additions & 0 deletions apps/hashgraph-ssi-service/overlays/dev/config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"appName": "hashgraph-ssi-service",
"userGivenName": "hashgraph-ssi-service",
"destNamespace": "hashgraph-ssi-service",
"destServer": "https://kubernetes.default.svc",
"srcPath": "apps/hashgraph-ssi-service/overlays/dev",
"srcRepoURL": "https://github.com/devxp-tech/gitops.git",
"srcTargetRevision": "",
"CreateNamespace": true,
"labels": null
}
55 changes: 55 additions & 0 deletions apps/hashgraph-ssi-service/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: hashgraph-ssi-service
resources:
- ../../base
helmCharts:
- name: devxp-app
releaseName: devxp-app
version: 0.2.20
repo: https://devxp-tech.github.io/helm-charts
valuesInline:
name: hashgraph-ssi-service
image:
repository: ghcr.io/devxp-tech/hashgraph-ssi-service
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/hashgraph-ssi-service/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: hashgraph-ssi-service
resources:
- ../../base
helmCharts:
- name: devxp-app
releaseName: devxp-app
version: 0.1.81
repo: https://devxp-tech.github.io/helm-charts
valuesInline:
name: hashgraph-ssi-service
image:
repository: ghcr.io/devxp-tech/hashgraph-ssi-service
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
Loading