Skip to content
Snippets Groups Projects
Select Git revision
  • e2f1f8d69d0dd8ca2b2b8b1ef101537fa7066460
  • master default protected
  • v2.28.0
  • v2.27.0
  • v2.25.1
  • v2.24.3
  • v2.26.0
  • v2.24.2
  • v2.25.0
  • v2.24.1
  • v2.22.2
  • v2.23.3
  • v2.24.0
  • v2.23.2
  • v2.23.1
  • v2.23.0
  • v2.22.1
  • v2.22.0
  • v2.21.0
  • v2.20.0
  • v2.19.1
  • v2.18.2
22 results

fcos.md

Blame
    • Cristian Calin's avatar
      e6976a54
      add pre-commit hook to facilitate local testing (#9158) · e6976a54
      Cristian Calin authored
      * add pre-commit hook configuration
      
      * add tmp.md to .gitignore
      
      * describe the use of pre-commit hook in CONTRIBUTING.md
      
      * fix docs/integration.md errors identified by markdownlint
      
      * fix docs/<file>.md errors identified by markdownlint
      
      * docs/azure-csi.md
      * docs/azure.md
      * docs/bootstrap-os.md
      * docs/calico.md
      * docs/debian.md
      * docs/fcos.md
      * docs/vagrant.md
      * docs/gcp-lb.md
      * docs/kubernetes-apps/registry.md
      * docs/setting-up-your-first-cluster.md
      * docs/vagrant.md
      * docs/vars.md
      
      * fix contrib/<file>.md errors identified by markdownlint
      add pre-commit hook to facilitate local testing (#9158)
      Cristian Calin authored
      * add pre-commit hook configuration
      
      * add tmp.md to .gitignore
      
      * describe the use of pre-commit hook in CONTRIBUTING.md
      
      * fix docs/integration.md errors identified by markdownlint
      
      * fix docs/<file>.md errors identified by markdownlint
      
      * docs/azure-csi.md
      * docs/azure.md
      * docs/bootstrap-os.md
      * docs/calico.md
      * docs/debian.md
      * docs/fcos.md
      * docs/vagrant.md
      * docs/gcp-lb.md
      * docs/kubernetes-apps/registry.md
      * docs/setting-up-your-first-cluster.md
      * docs/vagrant.md
      * docs/vars.md
      
      * fix contrib/<file>.md errors identified by markdownlint
    Dockerfile 654 B
    FROM ubuntu:16.04
    
    RUN mkdir /kubespray
    WORKDIR /kubespray
    RUN apt update -y && \
        apt install -y \
        libssl-dev python-dev sshpass apt-transport-https \
        ca-certificates curl gnupg2 software-properties-common python-pip
    RUN  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | apt-key add - && \
         add-apt-repository \
         "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
         $(lsb_release -cs) \
         stable" \
         && apt update -y && apt-get install docker-ce -y
    COPY . .
    RUN /usr/bin/python -m pip install pip -U && /usr/bin/python -m pip install -r tests/requirements.txt && python -m pip install -r requirements.txt