From e12687748a43cf32f96445fec4a84dbf8dd2d4db Mon Sep 17 00:00:00 2001 From: Intizar Date: Tue, 18 Jun 2024 15:39:20 +0900 Subject: [PATCH] remove old listener, worker, reporter charts --- .../listener/deployment-listener.yaml | 127 ---------------- request-response/templates/listener/sa.yaml | 12 -- .../templates/listener/service.yaml | 21 --- .../reporter/deployment-reporter.yaml | 139 ------------------ request-response/templates/reporter/sa.yaml | 12 -- .../templates/reporter/service.yaml | 20 --- .../templates/worker/deployment-worker.yaml | 136 ----------------- request-response/templates/worker/sa.yaml | 12 -- .../templates/worker/service.yaml | 20 --- request-response/values.baobab.yaml | 81 ---------- request-response/values.cypress.yaml | 81 ---------- request-response/values.yaml | 81 ---------- 12 files changed, 742 deletions(-) delete mode 100644 request-response/templates/listener/deployment-listener.yaml delete mode 100644 request-response/templates/listener/sa.yaml delete mode 100644 request-response/templates/listener/service.yaml delete mode 100644 request-response/templates/reporter/deployment-reporter.yaml delete mode 100644 request-response/templates/reporter/sa.yaml delete mode 100644 request-response/templates/reporter/service.yaml delete mode 100644 request-response/templates/worker/deployment-worker.yaml delete mode 100644 request-response/templates/worker/sa.yaml delete mode 100644 request-response/templates/worker/service.yaml diff --git a/request-response/templates/listener/deployment-listener.yaml b/request-response/templates/listener/deployment-listener.yaml deleted file mode 100644 index bc640af6..00000000 --- a/request-response/templates/listener/deployment-listener.yaml +++ /dev/null @@ -1,127 +0,0 @@ -{{- if .Values.listener.enabled -}} -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ .Values.global.name }}-listener - labels: - {{- include "orakl-request-response.labels.listener" . | nindent 4 }} -spec: - replicas: {{ .Values.listener.replicas }} - selector: - matchLabels: - {{- include "orakl-request-response.selectorLabels.listener" . | nindent 6 }} - template: - metadata: - {{- with .Values.global.podAnnotations }} - annotations: - {{- toYaml . | nindent 8 }} - {{- end }} - labels: - {{- include "orakl-request-response.selectorLabels.listener" . | nindent 8 }} - spec: - {{- with .Values.global.image.imagePullSecrets }} - imagePullSecrets: - {{- toYaml . | nindent 8 }} - {{- end }} - serviceAccountName: {{ .Values.listener.serviceAccount.name }} - securityContext: - {{- toYaml .Values.listener.podSecurityContext | nindent 8 }} - containers: - - name: {{ .Chart.Name }} - securityContext: - {{- toYaml .Values.listener.containerSecurityContext | nindent 12 }} - image: "{{ .Values.global.image.repository }}:{{ .Values.global.image.listenerTag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.global.image.pullPolicy }} - {{- if .Values.global.secretManager.enabled }} - env: - - name: NODE_ENV - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: NODE_ENV - - name: ORAKL_NETWORK_API_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: ORAKL_NETWORK_API_URL - - name: CHAIN - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: CHAIN - - name: HEALTH_CHECK_PORT - value: "8080" - - name: LOG_LEVEL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: LOG_LEVEL - - name: REDIS_HOST - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_HOST - - name: REDIS_PORT - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_PORT - - name: PROVIDER_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: PROVIDER_URL - - name: REPORTER_PORT - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REPORTER_PORT - {{ else }} - env: - {{- toYaml .Values.global.env | nindent 12 }} - - name: LISTENER_PORT - value: "4000" - - name: HEALTH_CHECK_PORT - value: "8080" - {{ end }} - command: ["yarn"] - args: [start:listener:request_response] - ports: - - name: healthcheck - containerPort: 8080 - - name: watchman - containerPort: {{ .Values.listener.APP_PORT | default 4000 | int }} - {{- if .Values.global.livenessProbe.enabled }} - livenessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.livenessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.livenessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.livenessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.livenessProbe.successThreshold }} - failureThreshold: {{ .Values.global.livenessProbe.failureThreshold }} - {{- end }} - {{- if .Values.global.readinessProbe.enabled }} - readinessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.readinessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.readinessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.readinessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.readinessProbe.successThreshold }} - failureThreshold: {{ .Values.global.readinessProbe.failureThreshold }} - {{- end }} - resources: - {{- toYaml .Values.listener.resources | nindent 12 }} - - {{- with .Values.nodeSelector }} - nodeSelector: - {{- toYaml . | nindent 8 }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 8 }} - {{- end }} -{{- end }} \ No newline at end of file diff --git a/request-response/templates/listener/sa.yaml b/request-response/templates/listener/sa.yaml deleted file mode 100644 index 0e9fc925..00000000 --- a/request-response/templates/listener/sa.yaml +++ /dev/null @@ -1,12 +0,0 @@ -{{- if .Values.listener.serviceAccount.create -}} -apiVersion: v1 -kind: ServiceAccount -metadata: - name: {{ .Values.listener.serviceAccount.name }} - labels: - {{- include "orakl-request-response.labels.listener" . | nindent 4 }} - {{- with .Values.listener.serviceAccount.annotations }} - annotations: - {{- toYaml . | nindent 4 }} - {{- end }} -{{- end }} diff --git a/request-response/templates/listener/service.yaml b/request-response/templates/listener/service.yaml deleted file mode 100644 index d2a70cd7..00000000 --- a/request-response/templates/listener/service.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ .Values.global.name }}-listener - labels: - {{- include "orakl-request-response.labels.listener" . | nindent 4 }} -spec: - type: ClusterIP - ports: - - name: watchman - port: 4000 - targetPort: 4000 - protocol: TCP - - name: healthcheck - port: 8080 - targetPort: 8080 - protocol: TCP - selector: - {{- include "orakl-request-response.selectorLabels.listener" . | nindent 6 }} - - diff --git a/request-response/templates/reporter/deployment-reporter.yaml b/request-response/templates/reporter/deployment-reporter.yaml deleted file mode 100644 index 23a46abf..00000000 --- a/request-response/templates/reporter/deployment-reporter.yaml +++ /dev/null @@ -1,139 +0,0 @@ -{{- if .Values.reporter.enabled -}} -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ .Values.global.name }}-reporter - labels: - {{- include "orakl-request-response.labels.reporter" . | nindent 4 }} -spec: - replicas: {{ .Values.reporter.replicas }} - selector: - matchLabels: - {{- include "orakl-request-response.selectorLabels.reporter" . | nindent 6 }} - template: - metadata: - {{- with .Values.global.podAnnotations }} - annotations: - {{- toYaml . | nindent 8 }} - {{- end }} - labels: - {{- include "orakl-request-response.selectorLabels.reporter" . | nindent 8 }} - spec: - {{- with .Values.global.image.imagePullSecrets }} - imagePullSecrets: - {{- toYaml . | nindent 8 }} - {{- end }} - serviceAccountName: {{ .Values.reporter.serviceAccount.name }} - securityContext: - {{- toYaml .Values.reporter.podSecurityContext | nindent 8 }} - {{- if .Values.global.affinity.enabled }} - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 1 - preference: - matchExpressions: - - key: {{ .Values.global.affinity.key }} - operator: In - values: - - {{ .Values.global.affinity.value }} - {{- end }} - containers: - - name: {{ .Chart.Name }} - securityContext: - {{- toYaml .Values.reporter.containerSecurityContext | nindent 12 }} - image: "{{ .Values.global.image.repository }}:{{ .Values.global.image.reporterTag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.global.image.pullPolicy }} - {{- if .Values.global.secretManager.enabled }} - env: - - name: NODE_ENV - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: NODE_ENV - - name: ORAKL_NETWORK_API_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: ORAKL_NETWORK_API_URL - - name: CHAIN - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: CHAIN - - name: HEALTH_CHECK_PORT - value: "8080" - - name: LOG_LEVEL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: LOG_LEVEL - - name: REDIS_HOST - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_HOST - - name: REDIS_PORT - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_PORT - - name: PROVIDER_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: PROVIDER_URL - - name: REPORTER_PORT - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REPORTER_PORT - {{ else }} - env: - {{- toYaml .Values.global.env | nindent 12 }} - {{ end }} - - name: REPORTER_PORT - value: "6000" - - name: HEALTH_CHECK_PORT - value: "8080" - command: ["yarn"] - args: [start:reporter:request_response] - ports: - - name: watchman - containerPort: {{ .Values.reporter.APP_PORT | default 6000 | int }} - - name: healthcheck - containerPort: 8080 - {{- if .Values.global.livenessProbe.enabled }} - livenessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.livenessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.livenessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.livenessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.livenessProbe.successThreshold }} - failureThreshold: {{ .Values.global.livenessProbe.failureThreshold }} - {{- end }} - {{- if .Values.global.readinessProbe.enabled }} - readinessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.readinessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.readinessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.readinessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.readinessProbe.successThreshold }} - failureThreshold: {{ .Values.global.readinessProbe.failureThreshold }} - {{- end }} - resources: - {{- toYaml .Values.reporter.resources | nindent 12 }} - - {{- with .Values.nodeSelector }} - nodeSelector: - {{- toYaml . | nindent 8 }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 8 }} - {{- end }} -{{- end }} \ No newline at end of file diff --git a/request-response/templates/reporter/sa.yaml b/request-response/templates/reporter/sa.yaml deleted file mode 100644 index 53f82ada..00000000 --- a/request-response/templates/reporter/sa.yaml +++ /dev/null @@ -1,12 +0,0 @@ -{{- if .Values.reporter.serviceAccount.create -}} -apiVersion: v1 -kind: ServiceAccount -metadata: - name: {{ .Values.reporter.serviceAccount.name }} - labels: - {{- include "orakl-request-response.labels.reporter" . | nindent 4 }} - {{- with .Values.reporter.serviceAccount.annotations }} - annotations: - {{- toYaml . | nindent 4 }} - {{- end }} -{{- end }} diff --git a/request-response/templates/reporter/service.yaml b/request-response/templates/reporter/service.yaml deleted file mode 100644 index 5771ea06..00000000 --- a/request-response/templates/reporter/service.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ .Values.global.name }}-reporter - labels: - {{- include "orakl-request-response.labels.reporter" . | nindent 4 }} -spec: - type: ClusterIP - ports: - - name: watchman - port: 6000 - targetPort: 6000 - protocol: TCP - - name: healthcheck - port: 8080 - targetPort: 8080 - protocol: TCP - selector: - {{- include "orakl-request-response.selectorLabels.reporter" . | nindent 6 }} - diff --git a/request-response/templates/worker/deployment-worker.yaml b/request-response/templates/worker/deployment-worker.yaml deleted file mode 100644 index 6cf87992..00000000 --- a/request-response/templates/worker/deployment-worker.yaml +++ /dev/null @@ -1,136 +0,0 @@ -{{- if .Values.worker.enabled -}} -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ .Values.global.name }}-worker - labels: - {{- include "orakl-request-response.labels.worker" . | nindent 4 }} -spec: - replicas: {{ .Values.worker.replicas }} - selector: - matchLabels: - {{- include "orakl-request-response.selectorLabels.worker" . | nindent 6 }} - template: - metadata: - {{- with .Values.global.podAnnotations }} - annotations: - {{- toYaml . | nindent 8 }} - {{- end }} - labels: - {{- include "orakl-request-response.selectorLabels.worker" . | nindent 8 }} - spec: - {{- with .Values.global.image.imagePullSecrets }} - imagePullSecrets: - {{- toYaml . | nindent 8 }} - {{- end }} - serviceAccountName: {{ .Values.worker.serviceAccount.name }} - securityContext: - {{- toYaml .Values.worker.podSecurityContext | nindent 8 }} - {{- if .Values.global.affinity.enabled }} - affinity: - nodeAffinity: - preferredDuringSchedulingIgnoredDuringExecution: - - weight: 1 - preference: - matchExpressions: - - key: {{ .Values.global.affinity.key }} - operator: In - values: - - {{ .Values.global.affinity.value }} - {{- end }} - containers: - - name: {{ .Chart.Name }} - securityContext: - {{- toYaml .Values.worker.containerSecurityContext | nindent 12 }} - image: "{{ .Values.global.image.repository }}:{{ .Values.global.image.workerTag | default .Chart.AppVersion }}" - imagePullPolicy: {{ .Values.global.image.pullPolicy }} - {{- if .Values.global.secretManager.enabled }} - env: - - name: NODE_ENV - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: NODE_ENV - - name: ORAKL_NETWORK_API_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: ORAKL_NETWORK_API_URL - - name: CHAIN - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: CHAIN - - name: HEALTH_CHECK_PORT - value: "8080" - - name: LOG_LEVEL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: LOG_LEVEL - - name: REDIS_HOST - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_HOST - - name: REDIS_PORT - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: REDIS_PORT - - name: PROVIDER_URL - valueFrom: - secretKeyRef: - name: orakl-request-response-secrets - key: PROVIDER_URL - - name: WORKER_PORT - value: "5000" - {{ else }} - env: - {{- toYaml .Values.global.env | nindent 12 }} - {{ end }} - - name: WORKER_PORT - value: "5000" - - name: HEALTH_CHECK_PORT - value: "8080" - command: ["yarn"] - args: [start:worker:request_response] - ports: - - name: healthcheck - containerPort: 8080 - - name: watchman - containerPort: {{ .Values.worker.APP_PORT | default 5000 | int }} - {{- if .Values.global.livenessProbe.enabled }} - livenessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.livenessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.livenessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.livenessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.livenessProbe.successThreshold }} - failureThreshold: {{ .Values.global.livenessProbe.failureThreshold }} - {{- end }} - {{- if .Values.global.readinessProbe.enabled }} - readinessProbe: - httpGet: - path: / - port: healthcheck - initialDelaySeconds: {{ .Values.global.readinessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.global.readinessProbe.periodSeconds }} - timeoutSeconds: {{ .Values.global.readinessProbe.timeoutSeconds }} - successThreshold: {{ .Values.global.readinessProbe.successThreshold }} - failureThreshold: {{ .Values.global.readinessProbe.failureThreshold }} - {{- end }} - resources: - {{- toYaml .Values.worker.resources | nindent 12 }} - - {{- with .Values.nodeSelector }} - nodeSelector: - {{- toYaml . | nindent 8 }} - {{- end }} - {{- with .Values.tolerations }} - tolerations: - {{- toYaml . | nindent 8 }} - {{- end }} -{{- end }} \ No newline at end of file diff --git a/request-response/templates/worker/sa.yaml b/request-response/templates/worker/sa.yaml deleted file mode 100644 index 66df0788..00000000 --- a/request-response/templates/worker/sa.yaml +++ /dev/null @@ -1,12 +0,0 @@ -{{- if .Values.worker.serviceAccount.create -}} -apiVersion: v1 -kind: ServiceAccount -metadata: - name: {{ .Values.worker.serviceAccount.name }} - labels: - {{- include "orakl-request-response.labels.worker" . | nindent 4 }} - {{- with .Values.worker.serviceAccount.annotations }} - annotations: - {{- toYaml . | nindent 4 }} - {{- end }} -{{- end }} diff --git a/request-response/templates/worker/service.yaml b/request-response/templates/worker/service.yaml deleted file mode 100644 index e3da6c81..00000000 --- a/request-response/templates/worker/service.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: {{ .Values.global.name }}-worker - labels: - {{- include "orakl-request-response.labels.worker" . | nindent 4 }} -spec: - type: ClusterIP - ports: - - name: watchman - port: 5000 - targetPort: 5000 - protocol: TCP - - name: healthcheck - port: 8080 - targetPort: 8080 - protocol: TCP - selector: - {{- include "orakl-request-response.selectorLabels.worker" . | nindent 6 }} - diff --git a/request-response/values.baobab.yaml b/request-response/values.baobab.yaml index 4108a2fc..6c714e1f 100644 --- a/request-response/values.baobab.yaml +++ b/request-response/values.baobab.yaml @@ -66,87 +66,6 @@ global: successThreshold: 1 failureThreshold: 5 -listener: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-listener - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 4000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - -worker: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-worker - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 5000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - -reporter: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-reporter - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 6000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - core: enabled: true replicas: 1 diff --git a/request-response/values.cypress.yaml b/request-response/values.cypress.yaml index fc20cbde..3ab39da6 100644 --- a/request-response/values.cypress.yaml +++ b/request-response/values.cypress.yaml @@ -66,87 +66,6 @@ global: successThreshold: 1 failureThreshold: 5 -listener: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-listener - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 4000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - -worker: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-worker - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 5000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - -reporter: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-reporter - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 6000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 800Mi - requests: - cpu: 500m - memory: 800Mi - core: enabled: true replicas: 1 diff --git a/request-response/values.yaml b/request-response/values.yaml index 85b4f399..a2c6869e 100644 --- a/request-response/values.yaml +++ b/request-response/values.yaml @@ -53,87 +53,6 @@ global: successThreshold: 1 failureThreshold: 5 -listener: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-listener - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 4000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 1000m - memory: 2Gi - requests: - cpu: 1000m - memory: 2Gi - -worker: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-worker - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 5000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 1000m - memory: 2Gi - requests: - cpu: 1000m - memory: 2Gi - -reporter: - enabled: true - replicas: 1 - serviceAccount: - # -- Create a service account for the application controller - create: true - # -- Service account name - name: orakl-request-response-reporter - # -- Annotations applied to created service account - annotations: {} - # -- Automount API credentials for the Service Account - automountServiceAccountToken: true - - APP_PORT: 6000 - - podSecurityContext: {} - - containerSecurityContext: {} - - resources: - limits: - cpu: 500m - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi - core: enabled: true replicas: 1