Skip to content

Commit

Permalink
new file: helm/ingress.yaml
Browse files Browse the repository at this point in the history
	deleted:    helm/mx-app/.helmignore
	deleted:    helm/mx-app/Chart.yaml
	deleted:    helm/mx-app/grafana-dashboards-configmap.yaml
	deleted:    helm/mx-app/grafana-datasource-configmap.yaml
	deleted:    helm/mx-app/grafana-deployment.yaml
	deleted:    helm/mx-app/prometheus-configmap.yaml
	deleted:    helm/mx-app/prometheus-deployment.yaml
	deleted:    helm/mx-app/templates/NOTES.txt
	deleted:    helm/mx-app/templates/_helpers.tpl
	deleted:    helm/mx-app/templates/deployment.yaml
	deleted:    helm/mx-app/templates/hpa.yaml
	deleted:    helm/mx-app/templates/ingress.yaml
	deleted:    helm/mx-app/templates/service.yaml
	deleted:    helm/mx-app/templates/serviceaccount.yaml
	deleted:    helm/mx-app/templates/tests/test-connection.yaml
	deleted:    helm/mx-app/values.yaml
	modified:   helm/mx-challenge-app/Chart.yaml
	modified:   helm/mx-challenge-app/dashboards/transactions.json
	new file:   helm/mx-challenge-app/mx-challenge-app-0.1.0.tgz
	modified:   helm/mx-challenge-app/templates/api/deployment.yaml
	new file:   helm/mx-challenge-app/templates/api/service.yaml
	new file:   helm/mx-challenge-app/templates/cache-warmer/service.yaml
	new file:   helm/mx-challenge-app/templates/grafana-dashboards-configmap.yaml
	deleted:    helm/mx-challenge-app/templates/grafana-datasource-configmap.yaml
	new file:   helm/mx-challenge-app/templates/queue-worker/service
	renamed:    helm/mx-challenge-app/templates/transactions-processor/deployment.yaml.old -> helm/mx-challenge-app/templates/transactions-processor/deployment.yaml
	new file:   helm/mx-challenge-app/templates/transactions-processor/service.yaml
	modified:   helm/mx-challenge-app/values.yaml
  • Loading branch information
mradian1 committed May 21, 2024
1 parent 524509b commit fbb6102
Show file tree
Hide file tree
Showing 29 changed files with 158 additions and 578 deletions.
46 changes: 46 additions & 0 deletions helm/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: my-ingress
annotations:
kubernetes.io/ingress.class: "gce"
kubernetes.io/ingress.allow-http: "false"
spec:
rules:
- http:
paths:
- path: /public
pathType: Prefix
backend:
service:
name: api-service
port:
number: 3000
- path: /private
pathType: Prefix
backend:
service:
name: api-service
port:
number: 4000
- path: /caching
pathType: Prefix
backend:
service:
name: api-service
port:
number: 5201
- path: /grafana
pathType: Prefix
backend:
service:
name: grafana-service
port:
number: 3010
- path: /prometheus
pathType: Prefix
backend:
service:
name: prometheus-service
port:
number: 9090
23 changes: 0 additions & 23 deletions helm/mx-app/.helmignore

This file was deleted.

24 changes: 0 additions & 24 deletions helm/mx-app/Chart.yaml

This file was deleted.

11 changes: 0 additions & 11 deletions helm/mx-app/grafana-dashboards-configmap.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions helm/mx-app/grafana-datasource-configmap.yaml

This file was deleted.

34 changes: 0 additions & 34 deletions helm/mx-app/grafana-deployment.yaml

This file was deleted.

9 changes: 0 additions & 9 deletions helm/mx-app/prometheus-configmap.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions helm/mx-app/prometheus-deployment.yaml

This file was deleted.

22 changes: 0 additions & 22 deletions helm/mx-app/templates/NOTES.txt

This file was deleted.

62 changes: 0 additions & 62 deletions helm/mx-app/templates/_helpers.tpl

This file was deleted.

68 changes: 0 additions & 68 deletions helm/mx-app/templates/deployment.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions helm/mx-app/templates/hpa.yaml

This file was deleted.

Loading

0 comments on commit fbb6102

Please sign in to comment.