Skip to content

Instantly share code, notes, and snippets.

View dduportal's full-sized avatar

Damien Duportal dduportal

View GitHub Profile
version: '3'
services:
webapp:
image: containous/whoami
# Move this directive under the "deploy:" if you are deploying to swarm instead of standalone Docker Engine
labels:
# Traefik v1
- "traefik.frontend.rule=Host:whoami.localhost"
# Traefik v2
provider "aws" {
region = "eu-west-2"
version = "~> 2.0"
}
variable "base_domain" {
type = "string"
description = "Base domain used for this experimentation"
default = "damienduportal.org"
}
@dduportal
dduportal / docker-compose.yml
Created June 6, 2019 08:59
Traefik-Ception
version: '3.7'
services:
reverse-proxy:
image: traefik:${TRAEFIK_LATEST_STABLE}
command:
- "--docker"
- "--api"
ports:
- "80:80"
@dduportal
dduportal / README.md
Last active May 29, 2019 21:50
traefik-cloudbees-jenkins

CloudBees Jenkins License Wizard Issue with Traefik and Firefox

Requirements

  • Docker Engine
  • docker-compose

Prepare Environment

With the docker-compose.yml file provided in this gist,

---
apiVersion: v1
kind: ServiceAccount
metadata:
name: traefik-ingress-controller
namespace: kube-system
---
kind: Deployment
apiVersion: extensions/v1beta1
metadata:
version: '3.4'
networks:
front:
docker-sock:
services:
lb:
image: traefik:1.7.11
command:
@dduportal
dduportal / docker-compose.yml
Created April 16, 2019 15:17
Traefik Path examples
version: '2.4'
services:
lb:
image: traefik:1.7.10
command:
- "--docker.domain=localhost"
- "--api"
ports:
- "80:80"
@dduportal
dduportal / Q & A.adoc
Last active April 1, 2019 07:35
Q & A Online Meetup: Back to Traefik 2.0 - Gigawatts of Routing Power
@dduportal
dduportal / Q&A.adoc
Last active February 27, 2019 16:12
Q&A of Traefik Online Meetup #1: Keep the Routing Simple

Q&A of Traefik Online Meetup #1: Keep the Routing Simple

Question: Doesn’t the web container need to use dynamic ports, and not port 80?

Answer: A container doesn’t need to publish/forward to any port on the outside. It listens on a port, for example, port 80, from its own private IP address, inside the Docker private network. The value of Traefik is to route requests from the outside on a chosen port, for example, port 80 or 443, of the public address, to the private IP address of the web server. Traefik watches for Docker’s API to get this private IP, and for any change of this private IP (e.g. on a container reboot). Also, you can have as many containers as you want, listening on their own port 80 without any conflict: useful for blue/green deployments, for example. You can find more information here: https://docs.Traefik.io/v1.7/basics/#concepts.


Question: Could you create the Jenkins link also with a Host:jenkins.demo.containous.cloud, and no other option (i.e. no tweak on Jenkins, no

apiVersion: v1
kind: ServiceAccount
metadata:
name: tiller
namespace: kube-system
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: tiller