128 lines
2.7 KiB
YAML
128 lines
2.7 KiB
YAML
# runs linkerd in a daemonset, in linker-to-linker mode, using namerd to route
|
|
# requests, and handling edge traffic on a separate linkerd router
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: l5d-config
|
|
data:
|
|
config.yaml: |-
|
|
admin:
|
|
port: 9990
|
|
|
|
telemetry:
|
|
- kind: io.l5d.prometheus
|
|
- kind: io.l5d.recentRequests
|
|
sampleRate: 0.25
|
|
|
|
usage:
|
|
orgId: linkerd-examples-daemonset-namerd
|
|
|
|
routers:
|
|
- protocol: http
|
|
label: outgoing
|
|
interpreter:
|
|
kind: io.l5d.namerd
|
|
dst: /$/inet/namerd.default.svc.cluster.local/4100
|
|
namespace: internal
|
|
transformers:
|
|
- kind: io.l5d.k8s.daemonset
|
|
namespace: default
|
|
port: incoming
|
|
service: l5d
|
|
servers:
|
|
- port: 4140
|
|
ip: 0.0.0.0
|
|
service:
|
|
responseClassifier:
|
|
kind: io.l5d.http.retryableRead5XX
|
|
|
|
- protocol: http
|
|
label: incoming
|
|
interpreter:
|
|
kind: io.l5d.namerd
|
|
dst: /$/inet/namerd.default.svc.cluster.local/4100
|
|
namespace: internal
|
|
transformers:
|
|
- kind: io.l5d.k8s.localnode
|
|
servers:
|
|
- port: 4141
|
|
ip: 0.0.0.0
|
|
|
|
- protocol: http
|
|
label: external
|
|
interpreter:
|
|
kind: io.l5d.namerd
|
|
dst: /$/inet/namerd.default.svc.cluster.local/4100
|
|
namespace: external
|
|
servers:
|
|
- port: 4142
|
|
ip: 0.0.0.0
|
|
---
|
|
apiVersion: extensions/v1beta1
|
|
kind: DaemonSet
|
|
metadata:
|
|
labels:
|
|
app: l5d
|
|
name: l5d
|
|
spec:
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: l5d
|
|
spec:
|
|
volumes:
|
|
- name: l5d-config
|
|
configMap:
|
|
name: "l5d-config"
|
|
containers:
|
|
- name: l5d
|
|
image: harbor-001.jimmysong.io/library/buoyantio-linkerd:1.1.2
|
|
env:
|
|
- name: POD_IP
|
|
valueFrom:
|
|
fieldRef:
|
|
fieldPath: status.podIP
|
|
args:
|
|
- /io.buoyant/linkerd/config/config.yaml
|
|
ports:
|
|
- name: outgoing
|
|
containerPort: 4140
|
|
hostPort: 4140
|
|
- name: incoming
|
|
containerPort: 4141
|
|
- name: external
|
|
containerPort: 4142
|
|
- name: admin
|
|
containerPort: 9990
|
|
volumeMounts:
|
|
- name: "l5d-config"
|
|
mountPath: "/io.buoyant/linkerd/config"
|
|
readOnly: true
|
|
|
|
- name: kubectl
|
|
image: harbor-001.jimmysong.io/library/buoyantio-kubectl:v1.4.0
|
|
args:
|
|
- "proxy"
|
|
- "-p"
|
|
- "8001"
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: l5d
|
|
spec:
|
|
selector:
|
|
app: l5d
|
|
type: LoadBalancer
|
|
ports:
|
|
- name: external
|
|
port: 80
|
|
targetPort: 4142
|
|
- name: outgoing
|
|
port: 4140
|
|
- name: incoming
|
|
port: 4141
|
|
- name: admin
|
|
port: 9990
|