Skip to content

Latest commit

 

History

History
executable file
·
61 lines (33 loc) · 810 Bytes

35-Labs-Verify-platform-binaries-before-deploying.md

File metadata and controls

executable file
·
61 lines (33 loc) · 810 Bytes

Lab - Verify Platform Binaries before deploying

  • Take me to the Lab

Solutions to Lab - Verify Platform Binaries before deploying.

  • Run command

    $ wget -O /opt/kubernetes.tar.gz https://dl.k8s.io/v1.20.0/kubernetes.tar.gz
    
    
  • Run command

    $ shasum -a512 /opt/kubernetes.tar.gz
    
    
  • Run

    
    $ cd /opt/
    
    $ tar -xf kubernetes.tar.gz
    
    $ cd kubernetes
    
    $ echo "v1.20.0-modified" > version
    
    $ cd ..
    
    $ tar -czf kubernetes-modified.tar.gz kubernetes
    
    $ shasum -a512 kubernetes-modified.tar.gz
        
    
  • Run command

    $ shasum -a512 /opt/kubernetes.tar.gz