Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions devikadileep@mulearn/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Self Introduction

Hi, I’m Devika Dileep, a final year Computer Science student at the College of Engineering Perumon and a passionate frontend developer.



11 changes: 11 additions & 0 deletions devikadileep@mulearn/Task-2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Use lightweight Python image
FROM python:3.10-slim

# Set working directory
WORKDIR /app

# Copy your script into container
COPY script.py .

# Run the script
CMD ["python", "script.py"]
7 changes: 7 additions & 0 deletions devikadileep@mulearn/Task-2/script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import time

print("🚀 Container Started")

while True:
print("Hello World")
time.sleep(5)
13 changes: 13 additions & 0 deletions devikadileep@mulearn/Task-3/submission.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# CI/CD Assignment Submission

Name: Devika Dileep
muid: devikadileep@mulearn

## 🔗 Repository Link
https://github.com/Devika123098/cicd-assignment

## 🌐 Live Website
https://devika123098.github.io/cicd-assignment/

## 🌐 Git Actions Link
https://github.com/Devika123098/cicd-assignment/actions
19 changes: 19 additions & 0 deletions devikadileep@mulearn/Task-4/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-deployment
spec:
replicas: 1
selector:
matchLabels:
app: nginx
template:
metadata:
labels:
app: nginx
spec:
containers:
- name: nginx
image: nginx:latest
ports:
- containerPort: 80
Binary file added devikadileep@mulearn/Task-4/screenshot1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added devikadileep@mulearn/Task-4/screenshot2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added devikadileep@mulearn/Task-4/screenshot3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions devikadileep@mulearn/Task-4/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: v1
kind: Service
metadata:
name: nginx-service
spec:
type: NodePort
selector:
app: nginx
ports:
- protocol: TCP
port: 80
targetPort: 80
nodePort: 30007