Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
chore: bump observability 0.1.20
Browse files Browse the repository at this point in the history
  • Loading branch information
foo0x29a committed Jun 20, 2023
1 parent ee9e1fe commit 372a7a5
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/topos-observability/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.20
version: 0.1.21

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
49 changes: 49 additions & 0 deletions charts/topos-observability/templates/02-observability-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,52 @@ spec:
number: 9090
path: /
pathType: Prefix
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: otel-grpc
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/issuer: "letsencrypt-{{ .Values.environment }}"
nginx.ingress.kubernetes.io/backend-protocol: "GRPC"
spec:
tls:
- hosts:
- "grpc.{{ .Values.otelHost }}"
secretName: "grpc.{{ .Values.otelHost }}-secret-tls"
rules:
- host: "grpc.{{ .Values.otelHost }}"
http:
paths:
- backend:
service:
name: otel-collector-opentelemetry-collector
port:
number: 4317
path: /
pathType: Prefix
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: otel-http
annotations:
kubernetes.io/ingress.class: "nginx"
cert-manager.io/issuer: "letsencrypt-{{ .Values.environment }}"
spec:
tls:
- hosts:
- {{ .Values.otelHost }}
secretName: "{{ .Values.otelHost }}-secret-tls"
rules:
- host: {{ .Values.otelHost }}
http:
paths:
- backend:
service:
name: otel-collector-opentelemetry-collector
port:
number: 4318
path: /
pathType: Prefix
4 changes: 4 additions & 0 deletions charts/topos-observability/values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Default values for topos-observability.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
acme:
email: [email protected]

# possible values are staging or production
environment: staging
otelHost: otel.nowhere.com
prometheusHost: prometheus.nowhere.com

prometheus:
Expand Down

0 comments on commit 372a7a5

Please sign in to comment.