mirror of
https://github.com/marcel-dempers/docker-development-youtube-series.git
synced 2025-06-04 16:56:56 +00:00
22 lines
330 B
YAML
22 lines
330 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: jenkins
|
|
labels:
|
|
app: jenkins
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: ui
|
|
port: 8080
|
|
targetPort: 8080
|
|
protocol: TCP
|
|
- name: slave
|
|
port: 50000
|
|
protocol: TCP
|
|
- name: http
|
|
port: 80
|
|
targetPort: 8080
|
|
selector:
|
|
app: jenkins
|