Move crio default sock to /var/run/crio/crio.sock
Signed-off-by: Mrunal Patel <mrunalp@gmail.com> Signed-off-by: Antonio Murdaca <runcom@redhat.com>
This commit is contained in:
parent
e7471600f8
commit
8fe6dd36a4
8 changed files with 12 additions and 7 deletions
|
@ -229,7 +229,7 @@ You can run a local version of kubernetes with CRI-O using `local-up-cluster.sh`
|
||||||
```shell
|
```shell
|
||||||
CGROUP_DRIVER=systemd \
|
CGROUP_DRIVER=systemd \
|
||||||
CONTAINER_RUNTIME=remote \
|
CONTAINER_RUNTIME=remote \
|
||||||
CONTAINER_RUNTIME_ENDPOINT='/var/run/crio.sock --runtime-request-timeout=15m' \
|
CONTAINER_RUNTIME_ENDPOINT='/var/run/crio/crio.sock --runtime-request-timeout=15m' \
|
||||||
./hack/local-up-cluster.sh
|
./hack/local-up-cluster.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -8,6 +8,7 @@ import (
|
||||||
_ "net/http/pprof"
|
_ "net/http/pprof"
|
||||||
"os"
|
"os"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
|
"path/filepath"
|
||||||
"sort"
|
"sort"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
@ -429,6 +430,10 @@ func main() {
|
||||||
return fmt.Errorf("invalid --runtime value %q", err)
|
return fmt.Errorf("invalid --runtime value %q", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := os.MkdirAll(filepath.Dir(config.Listen), 0755); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
// Remove the socket if it already exists
|
// Remove the socket if it already exists
|
||||||
if _, err := os.Stat(config.Listen); err == nil {
|
if _, err := os.Stat(config.Listen); err == nil {
|
||||||
if err := os.Remove(config.Listen); err != nil {
|
if err := os.Remove(config.Listen); err != nil {
|
||||||
|
|
|
@ -97,7 +97,7 @@ func main() {
|
||||||
app.Flags = []cli.Flag{
|
app.Flags = []cli.Flag{
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "connect",
|
Name: "connect",
|
||||||
Value: "/var/run/crio.sock",
|
Value: "/var/run/crio/crio.sock",
|
||||||
Usage: "Socket to connect to",
|
Usage: "Socket to connect to",
|
||||||
},
|
},
|
||||||
cli.DurationFlag{
|
cli.DurationFlag{
|
||||||
|
|
|
@ -40,7 +40,7 @@
|
||||||
export PATH=/usr/local/go/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/root/bin:{{ ansible_env.GOPATH }}/bin:{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes/third_party/etcd:{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes/_output/local/bin/linux/amd64/
|
export PATH=/usr/local/go/bin:/usr/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/root/bin:{{ ansible_env.GOPATH }}/bin:{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes/third_party/etcd:{{ ansible_env.GOPATH }}/src/k8s.io/kubernetes/_output/local/bin/linux/amd64/
|
||||||
export CONTAINER_RUNTIME=remote
|
export CONTAINER_RUNTIME=remote
|
||||||
export CGROUP_DRIVER=systemd
|
export CGROUP_DRIVER=systemd
|
||||||
export CONTAINER_RUNTIME_ENDPOINT='/var/run/crio.sock --runtime-request-timeout=5m'
|
export CONTAINER_RUNTIME_ENDPOINT='/var/run/crio/crio.sock --runtime-request-timeout=5m'
|
||||||
export ALLOW_SECURITY_CONTEXT=","
|
export ALLOW_SECURITY_CONTEXT=","
|
||||||
export ALLOW_PRIVILEGED=1
|
export ALLOW_PRIVILEGED=1
|
||||||
export DNS_SERVER_IP={{ ansible_eth0.ipv4.address }}
|
export DNS_SERVER_IP={{ ansible_eth0.ipv4.address }}
|
||||||
|
|
|
@ -94,7 +94,7 @@ set the CPU profile file path
|
||||||
ignore: All volumes are just ignored and no action is taken.
|
ignore: All volumes are just ignored and no action is taken.
|
||||||
|
|
||||||
**--listen**=""
|
**--listen**=""
|
||||||
Path to CRI-O socket (default: "/var/run/crio.sock")
|
Path to CRI-O socket (default: "/var/run/crio/crio.sock")
|
||||||
|
|
||||||
**--log**=""
|
**--log**=""
|
||||||
Set the log file path where internal debug information is written
|
Set the log file path where internal debug information is written
|
||||||
|
|
|
@ -68,7 +68,7 @@ Example:
|
||||||
## CRIO.API TABLE
|
## CRIO.API TABLE
|
||||||
|
|
||||||
**listen**=""
|
**listen**=""
|
||||||
Path to crio socket (default: "/var/run/crio.sock")
|
Path to crio socket (default: "/var/run/crio/crio.sock")
|
||||||
|
|
||||||
## CRIO.RUNTIME TABLE
|
## CRIO.RUNTIME TABLE
|
||||||
|
|
||||||
|
|
|
@ -79,7 +79,7 @@ KUBELET_ARGS="--pod-manifest-path=/etc/kubernetes/manifests
|
||||||
You need to add following parameters to `KUBELET_ARGS`:
|
You need to add following parameters to `KUBELET_ARGS`:
|
||||||
* `--experimental-cri=true` - Use Container Runtime Interface. Will be true by default from kubernetes 1.6 release.
|
* `--experimental-cri=true` - Use Container Runtime Interface. Will be true by default from kubernetes 1.6 release.
|
||||||
* `--container-runtime=remote` - Use remote runtime with provided socket.
|
* `--container-runtime=remote` - Use remote runtime with provided socket.
|
||||||
* `--container-runtime-endpoint=/var/run/crio.sock` - Socket for remote runtime (default `crio` socket localization).
|
* `--container-runtime-endpoint=/var/run/crio/crio.sock` - Socket for remote runtime (default `crio` socket localization).
|
||||||
* `--runtime-request-timeout=10m` - Optional but useful. Some requests, especially pulling huge images, may take longer than default (2 minutes) and will cause an error.
|
* `--runtime-request-timeout=10m` - Optional but useful. Some requests, especially pulling huge images, may take longer than default (2 minutes) and will cause an error.
|
||||||
|
|
||||||
Kubelet is prepared now.
|
Kubelet is prepared now.
|
||||||
|
|
|
@ -104,7 +104,7 @@ func DefaultConfig() *Config {
|
||||||
return &Config{
|
return &Config{
|
||||||
Config: *libkpod.DefaultConfig(),
|
Config: *libkpod.DefaultConfig(),
|
||||||
APIConfig: APIConfig{
|
APIConfig: APIConfig{
|
||||||
Listen: "/var/run/crio.sock",
|
Listen: "/var/run/crio/crio.sock",
|
||||||
StreamAddress: "",
|
StreamAddress: "",
|
||||||
StreamPort: "10010",
|
StreamPort: "10010",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue