This file contains hidden or 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
########################### | |
# IT IS ONLY | |
# INSTRUCTIONS (NOT MENT TO BE EXECUTABLE DIRECTLY) | |
########################### | |
# reference: https://gist.github.com/saiyam1814/c3e91322441fdb53bbf5958b943a41f3 | |
# 192.168.1.6 kubeadm-cp-1-5db6-f1562d | |
# 192.168.1.7 kubeadm-cp-2-11ce-f1562d | |
# 192.168.1.8 kubeadm-cp-3-16c3-f1562d |
This file contains hidden or 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
[Watch the video in YouTube<br> ](https://youtu.be/6-UJzEXMvGY) |
This file contains hidden or 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
# Use the official Python 3.9 image | |
FROM python:3.9 | |
# Set the working directory to /code | |
WORKDIR /code | |
# Copy the current directory contents into the container at /code | |
COPY ./requirements.txt /code/requirements.txt | |
# Install requirements.txt |
This file contains hidden or 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
/*** | |
* @author Dipankar Das | |
* cc -o util copy.c | |
* | |
* ./util cp <source> <destination> | |
* | |
* ./util mv <source> <destination> | |
*/ | |
#include <stdio.h> |
NewerOlder