diff --git a/admin/Chart.yaml b/admin/Chart.yaml deleted file mode 100644 index f489ccbb..00000000 --- a/admin/Chart.yaml +++ /dev/null @@ -1,5 +0,0 @@ -apiVersion: v2 -name: orakl-admin -description: orakl network service monitor api -version: 0.1.0 -appVersion: 1.0.0 diff --git a/admin/templates/deployment.yaml b/admin/templates/deployment.yaml deleted file mode 100644 index 2cf3fe99..00000000 --- a/admin/templates/deployment.yaml +++ /dev/null @@ -1,41 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ .Values.deployment.name }} -spec: - replicas: {{ .Values.deployment.replicas }} - selector: - matchLabels: - app: orakl-admin - template: - metadata: - labels: - app: orakl-admin - spec: - containers: - - name: orakl-admin - image: {{ .Values.image.repository }}:{{ .Values.image.tag }} - imagePullPolicy: Always - - command: - - yarn - - start - ports: - - containerPort: 3000 - livenessProbe: - httpGet: - path: {{ .Values.probes.liveness.path }} - port: {{ .Values.probes.liveness.port }} - initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} - periodSeconds: {{ .Values.probes.liveness.periodSeconds }} - timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} - failureThreshold: {{ .Values.probes.liveness.failureThreshold }} - readinessProbe: - httpGet: - path: {{ .Values.probes.readiness.path }} - port: {{ .Values.probes.readiness.port }} - initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} - periodSeconds: {{ .Values.probes.readiness.periodSeconds }} - timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} - successThreshold: {{ .Values.probes.readiness.successThreshold }} - diff --git a/admin/values.yaml b/admin/values.yaml deleted file mode 100644 index 4ca01a35..00000000 --- a/admin/values.yaml +++ /dev/null @@ -1,28 +0,0 @@ -global: - name: admin - namespace: orakl - -image: - repository: public.ecr.aws/bisonai/orakl-general - tag: admin.v0.1.0.20230802.0109.13ce71f - -deployment: - name: orakl-admin - replicas: 1 - resources: - -probes: - liveness: - path: / - port: 3000 - initialDelaySeconds: 30 - periodSeconds: 10 - timeoutSeconds: 5 - failureThreshold: 3 - readiness: - path: / - port: 3000 - initialDelaySeconds: 15 - periodSeconds: 5 - timeoutSeconds: 3 - successThreshold: 1