https://github.com/codeaprendiz/learn_devops
I am using this repository to document my devops journey. I follow the process of learning everything by tasks. Every task has an associated objective that encompasses an underlying concept. Concepts including CloudProviders, Containers, ContainersOrchestration, Databases, InfrastructureAsCode, Interview, VersionControl etc in progress
https://github.com/codeaprendiz/learn_devops
aws coding-tasks container-orchestration containers databases devops-essentials docker docker-compose gcp git interview kubernetes linux mongo monitoring mysql nginx oci terraform
Last synced: 4 days ago
JSON representation
I am using this repository to document my devops journey. I follow the process of learning everything by tasks. Every task has an associated objective that encompasses an underlying concept. Concepts including CloudProviders, Containers, ContainersOrchestration, Databases, InfrastructureAsCode, Interview, VersionControl etc in progress
- Host: GitHub
- URL: https://github.com/codeaprendiz/learn_devops
- Owner: codeaprendiz
- Created: 2021-01-15T19:50:34.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-12-15T14:26:37.000Z (4 months ago)
- Last Synced: 2025-04-12T01:56:27.768Z (4 days ago)
- Topics: aws, coding-tasks, container-orchestration, containers, databases, devops-essentials, docker, docker-compose, gcp, git, interview, kubernetes, linux, mongo, monitoring, mysql, nginx, oci, terraform
- Language: HCL
- Homepage:
- Size: 76.5 MB
- Stars: 1,507
- Watchers: 32
- Forks: 245
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- my-awesome-github-stars - codeaprendiz/learn_devops - I am using this repository to document my devops journey. I follow the process of learning everything by tasks. Every task has an associated objective that encompasses an underlying concept. Concepts (HCL)
README
# About
This plugin will append a custom header for tracing with a random value if one is not found already in the incoming request.
You can optionally customise this by specifying a custom header name that the plugin will look for in the incoming request (defaults to `X-Trace-Id`) and you can also specify a custom prefix to be added to that header (defaults to `""`).
# Configuration
Enable the plugin in your Traefik configuration:
```
[experimental.plugins.traceid]
modulename = "github.com/trinnylondon/traefik-add-trace-id"
version = "v0.1.3"
```Create a Middleware. Note that this plugin does not need any configuration, however, values must be passed in for it to be accepted within Traefik.
```
---
apiVersion: traefik.containo.us/v1alpha1
kind: Middleware
metadata:
name: traceid
spec:
plugin:
traceid:
headerPrefix: ''
headerName: 'X-Trace-Id'
```