-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update openapi * Updated password validation message * Updated cache scope * Update postman collections * Tls external (#183) * Fetch paymentinfo/vehicleowners from external api gateway * Added A Reset Password for Test Users Endpoint to Identity Service (#185) * added reset endpoint to identity service * Updated Postman Collection (#188) * Updated Postman Collection * Automatically Remove test database (#189) --------- Co-authored-by: Nikhil R <nikhil@traceable.ai> Co-authored-by: Mathew Jose Mammoottil <60283272+mathew-jose@users.noreply.github.com>
- Loading branch information
1 parent
01bae75
commit f8dedff
Showing
47 changed files
with
4,579 additions
and
2,876 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{ if .Values.apiGatewayServiceInstall }} | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ .Values.apiGatewayService.config.name }} | ||
labels: | ||
release: {{ .Release.Name }} | ||
{{- toYaml .Values.apiGatewayService.config.labels | nindent 4 }} | ||
data: | ||
SERVER_PORT: {{ .Values.apiGatewayService.port | quote }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{{ if .Values.apiGatewayServiceInstall }} | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: {{ .Values.apiGatewayService.name }} | ||
labels: | ||
release: {{ .Release.Name }} | ||
{{- with .Values.apiGatewayService.deploymentLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
replicas: {{ .Values.apiGatewayService.replicaCount }} | ||
selector: | ||
matchLabels: | ||
{{- toYaml .Values.apiGatewayService.deploymentSelectorMatchLabels | nindent 6 }} | ||
template: | ||
metadata: | ||
labels: | ||
release: {{ .Release.Name }} | ||
{{- with .Values.apiGatewayService.podLabels }} | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
spec: | ||
containers: | ||
- name: {{ .Values.apiGatewayService.name }} | ||
image: {{ .Values.apiGatewayService.image }}:{{ .Chart.AppVersion }} | ||
imagePullPolicy: {{ .Values.imagePullPolicy }} | ||
ports: | ||
- containerPort: {{ .Values.apiGatewayService.port }} | ||
{{- if .Values.apiGatewayService.resources }} | ||
resources: | ||
{{- toYaml .Values.apiGatewayService.resources | nindent 12 }} | ||
{{- end }} | ||
readinessProbe: | ||
tcpSocket: | ||
port: {{ .Values.apiGatewayService.port }} | ||
initialDelaySeconds: 15 | ||
periodSeconds: 10 | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{{ if .Values.apiGatewayServiceInstall }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ .Values.apiGatewayService.service.name }} | ||
labels: | ||
release: {{ .Release.Name }} | ||
{{- with .Values.apiGatewayService.service.labels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
ports: | ||
- port: {{ .Values.apiGatewayService.port }} | ||
name: https | ||
selector: | ||
{{- toYaml .Values.apiGatewayService.serviceSelectorLabels | nindent 4 }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: gateway-service-configmap | ||
labels: | ||
app: gateway-service | ||
data: | ||
SERVER_PORT: "443" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: gateway-service | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: gateway-service | ||
template: | ||
metadata: | ||
labels: | ||
app: gateway-service | ||
spec: | ||
containers: | ||
- name: gateway-service | ||
image: crapi/gateway-service:latest | ||
imagePullPolicy: Always | ||
ports: | ||
- containerPort: 8087 | ||
resources: | ||
limits: | ||
cpu: "100m" | ||
requests: | ||
cpu: 50m |
Oops, something went wrong.