Merge "Enable kubernetes SCTPSupport feature"
This commit is contained in:
commit
7f30e24da5
@ -17,6 +17,7 @@ apiServer:
|
|||||||
oidc-client-id: <%= @apiserver_oidc_client_id %>
|
oidc-client-id: <%= @apiserver_oidc_client_id %>
|
||||||
oidc-issuer-url: <%= @apiserver_oidc_issuer_url %>
|
oidc-issuer-url: <%= @apiserver_oidc_issuer_url %>
|
||||||
oidc-username-claim: <%= @apiserver_oidc_username_claim %>
|
oidc-username-claim: <%= @apiserver_oidc_username_claim %>
|
||||||
|
feature-gates: "SCTPSupport=true"
|
||||||
controllerManager:
|
controllerManager:
|
||||||
extraArgs:
|
extraArgs:
|
||||||
node-monitor-period: "2s"
|
node-monitor-period: "2s"
|
||||||
|
4
tools/docker/images/Dockerfile
Normal file
4
tools/docker/images/Dockerfile
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
FROM centos
|
||||||
|
RUN yum install -y nc
|
||||||
|
ENTRYPOINT ["nc"]
|
||||||
|
CMD ["nc"]
|
5
tools/docker/images/Readme.rst
Normal file
5
tools/docker/images/Readme.rst
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
export VERSION=v1.0.0
|
||||||
|
sudo docker build \
|
||||||
|
--network host \
|
||||||
|
-t netcat:${VERSION} \
|
||||||
|
.
|
Loading…
Reference in New Issue
Block a user