This repository was archived by the owner on Feb 26, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 8 files changed +20
-20
lines changed Expand file tree Collapse file tree 8 files changed +20
-20
lines changed Original file line number Diff line number Diff line change 6666
6767Flags:
6868 -f, --dhcpdd.configFile string Configuration file to use.
69- -l, --dhcpdd.listenHostPort string TCP listen host:port. (default " localhost:1240 " )
69+ -l, --dhcpdd.listenHostPort string TCP listen host:port. (default " localhost:1020 " )
7070 -h, --help help for dhcpdd
7171```
7272
8686
8787Flags:
8888 -f, --dhclientd.configFile string Configuration file to use.
89- -l, --dhclientd.listenHostPort string TCP listen host:port. (default " localhost:1241 " )
89+ -l, --dhclientd.listenHostPort string TCP listen host:port. (default " localhost:1030 " )
9090 -h, --help help for dhclientd
9191```
9292
Original file line number Diff line number Diff line change 4242 cpu : {{ .Values.resources.cpu }}
4343 {{ end }}
4444 ports :
45- - containerPort : 1241
45+ - containerPort : 1030
4646 {{ if and .Values.meta.dev .Values.meta.debug }}
4747 - containerPort : {{ .Values.meta.debugPort }}
4848 {{end}}
5959 type : NodePort
6060 ports :
6161 - name : grpc
62- port : 1241
63- targetPort : 1241
62+ port : 1030
63+ targetPort : 1030
6464 nodePort : {{ .Values.ingress.nodePort }}
6565 - name : debug
6666 port : {{ .Values.meta.debugNodePort }}
9696 app : dhclientd-{{ .Release.Name }}
9797 ports :
9898 - name : grpc
99- port : 1241
100- targetPort : 1241
99+ port : 1030
100+ targetPort : 1030
101101
102102---
103103apiVersion : networking.k8s.io/v1beta1
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ resources:
1414 maxReplicas : 10
1515
1616ingress :
17- nodePort : 31241
18- domain : dhclientd.felix.pojtinger .com
17+ nodePort : 31030
18+ domain : dhclientd.example .com
1919 path : /
Original file line number Diff line number Diff line change 4242 cpu : {{ .Values.resources.cpu }}
4343 {{ end }}
4444 ports :
45- - containerPort : 1240
45+ - containerPort : 1020
4646 {{ if and .Values.meta.dev .Values.meta.debug }}
4747 - containerPort : {{ .Values.meta.debugPort }}
4848 {{end}}
5959 type : NodePort
6060 ports :
6161 - name : grpc
62- port : 1240
63- targetPort : 1240
62+ port : 1020
63+ targetPort : 1020
6464 nodePort : {{ .Values.ingress.nodePort }}
6565 - name : debug
6666 port : {{ .Values.meta.debugNodePort }}
9696 app : dhcpdd-{{ .Release.Name }}
9797 ports :
9898 - name : grpc
99- port : 1240
100- targetPort : 1240
99+ port : 1020
100+ targetPort : 1020
101101
102102---
103103apiVersion : networking.k8s.io/v1beta1
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ resources:
1414 maxReplicas : 10
1515
1616ingress :
17- nodePort : 31240
18- domain : dhcpdd.felix.pojtinger .com
17+ nodePort : 31020
18+ domain : dhcpdd.example .com
1919 path : /
Original file line number Diff line number Diff line change 11package cmd
22
33const (
4- DHCPDDHostPortDefault = "localhost:1240 " // DHCPDDHostPortDefault is the default Host:port of `dhcpdd`.
5- DHClientDHostPortDefault = "localhost:1241 " // DHClientDHostPortDefault is the default Host:port of `dhclient`.
4+ DHCPDDHostPortDefault = "localhost:1020 " // DHCPDDHostPortDefault is the default Host:port of `dhcpdd`.
5+ DHClientDHostPortDefault = "localhost:1030 " // DHClientDHostPortDefault is the default Host:port of `dhclient`.
66 HostPortDocs = "Host:port of the server to use." // HostPortDocs is the documentation for the host:port flag.
77 ConfigurationFileDocs = "Configuration file to use." // ConfigurationFileDocs is the documentation for the configuration file flag.)
88)
Original file line number Diff line number Diff line change 11dhclientd :
2- listenHostPort : localhost:1241
2+ listenHostPort : localhost:1030
Original file line number Diff line number Diff line change 11dhcpdd :
2- listenHostPort : localhost:1240
2+ listenHostPort : localhost:1020
You can’t perform that action at this time.
0 commit comments