This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir -p ~/workspace/dotnet | |
cd ~/workspace/dotnet | |
dotnet new razor -o HelloWorldAspNetCore | |
cd HelloWorldAspNetCore | |
dotnet run | |
dotnet publish -c Release | |
cd ~/workspace/dotnet/HelloWorldAspNetCore/ | |
cat ./Dockerfile |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@ip-172-31-12-201:/home/ubuntu# /snap/kubelet/340/kubelet --help | |
Usage of /snap/kubelet/340/kubelet: | |
--address 0.0.0.0 The IP address for the Kubelet to serve on (set to 0.0.0.0 for all IPv4 interfaces and `::` for all IPv6 interfaces) (default 0.0.0.0) | |
--allow-privileged If true, allow containers to request privileged mode. | |
--alsologtostderr log to standard error as well as files | |
--anonymous-auth Enables anonymous requests to the Kubelet server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:una |
NewerOlder