Commit 5758bc06 authored by G33tha's avatar G33tha
Browse files

Issue #000 feat: added cert registry helm charts

Showing with 101 additions and 2 deletions
+101 -2
apiVersion: v1
appVersion: "1.0"
description: A Helm chart for Kubernetes
name: certregistry
version: 0.1.0
apiVersion: v1
data:
{{- range $key, $val := .Values.certregistryenv }}
{{ $key }}: {{ $val }}
{{- end }}
kind: ConfigMap
metadata:
creationTimestamp: null
name: {{ .Chart.Name }}-config
namespace: {{ .Values.namespace }}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Chart.Name }}
namespace: {{ .Values.namespace }}
spec:
replicas: {{ .Values.replicaCount }}
strategy:
type: {{ .Values.strategy.type }}
rollingUpdate:
maxsurge: {{ .Values.strategy.maxsurge }}
maxUnavailable: {{ .Values.strategy.maxunavailable }}
selector:
matchLabels:
app: {{ .Chart.Name }}
template:
metadata:
annotations:
readiness.status.sidecar.istio.io/applicationPorts: ""
checksum/config: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
labels:
app: {{ .Chart.Name }}
spec:
imagePullSecrets:
- name: {{ .Values.imagepullsecrets }}
containers:
- name: {{ .Chart.Name }}
image: "{{ .Values.dockerhub }}/{{ .Values.repository }}:{{ .Values.image_tag }}"
envFrom:
- configMapRef:
name: {{ .Chart.Name }}-config
resources:
{{ toYaml .Values.resources | indent 10 }}
ports:
- containerPort: {{ .Values.network.port }}
---
apiVersion: v1
kind: Service
metadata:
name: {{ .Chart.Name }}-service
namespace: {{ .Values.namespace }}
labels:
app: {{ .Chart.Name }}
spec:
ports:
- name: http-{{ .Chart.Name }}
protocol: TCP
port: {{ .Values.network.targetport }}
selector:
app: {{ .Chart.Name }}
### Default variable file for cert-registry-service ###
namespace: {{ namespace }}
imagepullsecrets: {{ imagepullsecrets }}
dockerhub: {{ dockerhub }}
replicaCount: {{certregistry_replicacount|default(1)}}
repository: {{certregistry_repository|default('cert_registry_service')}}
image_tag: {{image_tag }}
resources:
requests:
cpu: {{certregistry_service_cpu_req|default('50m')}}
memory: {{certregistry_service_mem_req|default('50Mi')}}
limits:
cpu: {{certregistry_service_cpu_limit|default('1')}}
memory: {{certregistry_service_mem_limit|default('550Mi')}}
network:
port: 9013
targetport: 9000
strategy:
type: RollingUpdate
maxsurge: 1
maxunavailable: 0
certregistryenv:
cert_service_base_url: {{sunbird_cert_service_url}}
sunbird_es_host: {{sunbird_es_host}}
sunbird_es_port: '"{{sunbird_es_port}}'"
......@@ -26,8 +26,8 @@ sunbird_portal_player_cdn_enabled: "{{sunbird_portal_player_cdn_enabled}}"
playerenv:
sunbird_port: '"3000"'
sunbird_content_player_url: {{sunbird_apimanager_service_base_url}}
sunbird_learner_player_url: {{sunbird_apimanager_service_base_url}}
sunbird_content_player_url: {{sunbird_apimanager_service_base_url}}/
sunbird_learner_player_url: {{sunbird_apimanager_service_base_url}}/
sunbird_content_proxy_url: {{sunbird_knowledge_mw_service_url}}
sunbird_echo_api_url: {{sunbird_echo_api_url}}
sunbird_autocreate_trampoline_user: '"false"'
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment