namespace is a mechanism for logically partitioning and isolating resources within a single cluster, allowing multiple teams or projects to share the same cluster without conflicts
creating a namespace mygroup by manfest file $ vim mygroup.yml apiVersion: v1
kind: Namespace
metadata:
name: mygroup
:x $ kubectl apply -f mygroup.yml
To list all namespace $ kubectl get namespaces
To switch to mygroup namespace $ kubectl config set-context --current --namespace=mygroup
To delete namespace mygroup $ kubectl delete namespace mygroup
make the iso file to a usb installer
then in bios settings make usb as first boot order
insert the pendirve automatically it detects the Linux Mint OS
and this screen will appear
select βstart linux mintβ then hit enter
we got the linux mint home screen
now double click the βinstall linux mintβ icon
in the welcome screen choose βEnglishβ and continue
select keyboard layout to English (US) and continue
Next we got the multimedia codecs wizard leave as it is and
hit continue
next we got the installation type wizard
select βsomething else β and continue
in the next wizard click βNew Partition Tableβ
we got the βcreate new empty partition table on this device ?β wizard
click continue
then select the free space and click β+β
we got the create partition wizard
give the size for root partition (Maximum size 85%)
use as βExt4 journaling file systemβ
Mount point : /
then click βOKβ
then again select the free space and click β+β sign
give the size for swap (twice the size of RAM usually)
select Use as: swap area
then click βOKβ
again select the free space and click β+β sign
give the size for EFI partition 1GB
select Use as: EFI system partition
and click βOKβ
again select the free space and click β+β sign
give the size 100 MB for
use as : βReserved BIOS boot areaβ then click OK
then click Install continue
the give the time zone as kolkata
then click continue and in the next wizard
give username , computer name , password
either choose login automatically or require password
then click βcontinueβ
the installation process tookΒ a while
when the installation complete
it will ask to remove the installation medium and press ENTER
the system reboots and Linux Mint cinnamon home page will be displayed
Day 1-
Hi, Everyone
Today I learned about the print() method
Print () is the simplest used to display a string or a number. Here are some basic examples:
$ vim user_input.py
roll_num = int(input("Enter your roll no.:"))
message = "Hello user your roll number is " + str(roll_num)
print(message)
:x
or
$ vim user_input.py
roll_num = int(input("Enter your roll no.:"))
print("Hello user your roll number is " + str(roll_num))
:x
$ python user_input.py
output "rds_endpoint" { value = "${aws_db_instance.myinstance.endpoint}" }
save and exit $ terraform init $ terraform plan $ terraform apply -auto-approve install mysql client in local host $ sudo apt install mysql-client To access the mysql $ mysql -h <end_point_URL> -P 3306 -u <username> -p To destroy the mysql RDS instance $ terraform destroy -auto-approve
create directory s3-demo and navigate $ mkdir s3-demo && cd s3-demo create a demo file sample.txt andβcontents $ echo βthis is sample object to store in demo-bucketβ > sample.txt create main.tf file $ vim main.tf
Install AWS CLI $ sudo apt install awscli -y
To check for the version $ aws βversion
To configure AWS account crdentials
copy the access and secret key from AWS account security credentials $ aws configure
AWS Access Key ID [None]: *****************Β
AWS Secret Access Key [None]: ******************
Default region name [None]: ap-south-1
Default output format [None]: json or table or text
output "public_ip" { description = "public ip of the instance" value = aws_instance.app_server.public_ip }
save and exit initialize the terraform $ terraform init $ terraform plan $ terraform apply -auto-approve it will create the AWS EC2 instance with output the public ip of the instance
To destroy the instance $ terraform destroy -auto-approve
To create postgres DB $ aws rds create-db-instance --db-instance-identifier demo-postgresql --db-instance-class db.t3.micro --engine postgres --master-username postgres --master-user-password passcode123 --allocated-storage 20
To describe and get the endpoint url $ aws rds describe-db-instances --db-instance-identifier demo-postgresql | grep Address
To access the remote postgresql $ psql --host=<endpoint_url> --port=5432 --username=postgres --dbname=postgres --password
To delete the db instance without final snapshot and automated backups $ aws rds delete-db-instance --db-instance-identifier demo-postgresql --skip-final-snapshot --delete-automated-backups