Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
e9ed2437
Commit
e9ed2437
authored
Jun 19, 2018
by
Rohith
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Type Fix
- nothing much here just a typo fix found when copied and pasting into a kops PR
https://github.com/kubernetes/kops/pull/5349
parent
3994829c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
options.go
cmd/kube-apiserver/app/options/options.go
+1
-1
proxier.go
pkg/proxy/iptables/proxier.go
+1
-1
proxier.go
pkg/proxy/winkernel/proxier.go
+1
-1
No files found.
cmd/kube-apiserver/app/options/options.go
View file @
e9ed2437
...
...
@@ -231,7 +231,7 @@ func (s *ServerRunOptions) AddFlags(fs *pflag.FlagSet) {
"api-server and calling out to webhook admission plugins."
)
fs
.
BoolVar
(
&
s
.
EnableAggregatorRouting
,
"enable-aggregator-routing"
,
s
.
EnableAggregatorRouting
,
"Turns on aggregator routing requests to endoints IP rather than cluster IP."
)
"Turns on aggregator routing requests to end
p
oints IP rather than cluster IP."
)
fs
.
StringVar
(
&
s
.
ServiceAccountSigningKeyFile
,
"service-account-signing-key-file"
,
s
.
ServiceAccountSigningKeyFile
,
""
+
"Path to the file that contains the current private key of the service account token issuer. The issuer will sign issued ID tokens with this private key. (Requires the 'TokenRequest' feature gate.)"
)
...
...
pkg/proxy/iptables/proxier.go
View file @
e9ed2437
...
...
@@ -1330,7 +1330,7 @@ func (proxier *Proxier) syncProxyRules() {
glog
.
Errorf
(
"Error syncing healtcheck services: %v"
,
err
)
}
if
err
:=
proxier
.
healthChecker
.
SyncEndpoints
(
endpointUpdateResult
.
HCEndpointsLocalIPSize
);
err
!=
nil
{
glog
.
Errorf
(
"Error syncing healthcheck endoints: %v"
,
err
)
glog
.
Errorf
(
"Error syncing healthcheck end
p
oints: %v"
,
err
)
}
// Finish housekeeping.
...
...
pkg/proxy/winkernel/proxier.go
View file @
e9ed2437
...
...
@@ -1109,7 +1109,7 @@ func (proxier *Proxier) syncProxyRules() {
glog
.
Errorf
(
"Error syncing healtcheck services: %v"
,
err
)
}
if
err
:=
proxier
.
healthChecker
.
SyncEndpoints
(
endpointUpdateResult
.
hcEndpoints
);
err
!=
nil
{
glog
.
Errorf
(
"Error syncing healthcheck endoints: %v"
,
err
)
glog
.
Errorf
(
"Error syncing healthcheck end
p
oints: %v"
,
err
)
}
// Finish housekeeping.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment