-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9b1b50f
commit 131ad75
Showing
10 changed files
with
101 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# apiVersion: jaegertracing.io/v1 | ||
# kind: Jaeger | ||
# metadata: | ||
# name: simplest | ||
# namespace: observability | ||
|
||
apiVersion: jaegertracing.io/v1 | ||
kind: Jaeger | ||
metadata: | ||
name: jaeger | ||
namespace: observability | ||
spec: | ||
strategy: allInOne | ||
allInOne: | ||
image: jaegertracing/all-in-one:latest | ||
options: | ||
log-level: debug | ||
query: | ||
base-path: /jaeger | ||
prometheus: | ||
server-url: "http://prom.<ENV-NAME>-<ENV-USER-ID>-01.<ENV-ANIMAL>.<ENV-DOMAIN>" | ||
metricsStorage: | ||
type: prometheus | ||
storage: | ||
options: | ||
memory: | ||
max-traces: 100000 |
This file was deleted.
Oops, something went wrong.
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,30 @@ | ||
--- | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: traefik-ingress | ||
namespace: kube-system | ||
spec: | ||
entryPoints: | ||
- web | ||
routes: | ||
- match: Host(`traefik.<ENV-NAME>-<ENV-USER-ID>-01.<ENV-ANIMAL>.<ENV-DOMAIN>`) && PathPrefix(`/`) | ||
kind: Rule | ||
services: | ||
- name: traefik-dashboard | ||
port: 9000 | ||
--- | ||
apiVersion: traefik.io/v1alpha1 | ||
kind: IngressRoute | ||
metadata: | ||
name: traefik-metrics | ||
namespace: kube-system | ||
spec: | ||
entryPoints: | ||
- web | ||
routes: | ||
- kind: Rule | ||
match: Host(`traefik.<ENV-NAME>-<ENV-USER-ID>-01.<ENV-ANIMAL>.<ENV-DOMAIN>`) && PathPrefix(`/metrics`) | ||
services: | ||
- name: prometheus@internal | ||
kind: TraefikService |
15 changes: 0 additions & 15 deletions
15
dapr-distributed-calendar/traefik/traefik-dashboard-ingress.yaml
This file was deleted.
Oops, something went wrong.
18 changes: 0 additions & 18 deletions
18
dapr-distributed-calendar/traefik/traefik-dashboard-service.yaml
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: traefik-dashboard | ||
namespace: kube-system | ||
labels: | ||
app.kubernetes.io/instance: traefik-dashboard-kube-system | ||
app.kubernetes.io/name: traefik-dashboard | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- name: traefik | ||
port: 9000 | ||
targetPort: traefik | ||
protocol: TCP | ||
selector: | ||
app.kubernetes.io/instance: traefik-kube-system | ||
app.kubernetes.io/name: traefik | ||
--- | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: traefik-metrics | ||
namespace: kube-system | ||
labels: | ||
app.kubernetes.io/instance: traefik-kube-system | ||
app.kubernetes.io/name: traefik-metrics | ||
spec: | ||
type: ClusterIP | ||
ports: | ||
- name: metrics | ||
port: 9100 | ||
protocol: TCP | ||
selector: | ||
app.kubernetes.io/instance: traefik-kube-system | ||
app.kubernetes.io/name: traefik |
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