Merge "Enable kubernetes SCTPSupport feature"

This commit is contained in:
Zuul 2019-09-03 20:16:18 +00:00 committed by Gerrit Code Review
commit 7f30e24da5
3 changed files with 10 additions and 0 deletions

View File

@ -17,6 +17,7 @@ apiServer:
oidc-client-id: <%= @apiserver_oidc_client_id %>
oidc-issuer-url: <%= @apiserver_oidc_issuer_url %>
oidc-username-claim: <%= @apiserver_oidc_username_claim %>
feature-gates: "SCTPSupport=true"
controllerManager:
extraArgs:
node-monitor-period: "2s"

View File

@ -0,0 +1,4 @@
FROM centos
RUN yum install -y nc
ENTRYPOINT ["nc"]
CMD ["nc"]

View File

@ -0,0 +1,5 @@
export VERSION=v1.0.0
sudo docker build \
--network host \
-t netcat:${VERSION} \
.