I'm DevOps today. Always looking for new challenges and opportunities to learn and grow in DevOps culture.
class Stenio:
def __init__(self):
self.name = "Stenio Ribeiro Ignácio"
self.role = "DevOps"
self.location = "Tupã - SP, Brazil"
self.skills = {
"Amazon Web Services": ["Intermediate", "Architect","Developer"]
"Google Cloud Platform": ["Intermediate", "Architect"]
"Golang": ["Beginner", "Scripting"]
"Python": ["Beginner", "Automation", "Scripting"],
"Docker": ["Intermediate", "Containerization", "Orchestration"],
"Kubernetes": ["Intermediate", "Containerization", "Orchestration"],
"Terraform": ["Intermediate", "IaC", "Automation"],
"Bash": ["Intermediate", "Automation", "Scripting"],
"Powershell": ["Intermediate", "Automation", "Scripting"],
"Git": ["Intermediate", "Version Control", "Collaboration"],
"CI/CD": ["Intermediate", "Automation"]
"Observability": ["Begineer", "Logging", "Trace"]
}
self.knowledge = ["DevOps", "DevSecOps", "Scripts", "IaC", "CI/CD", "Observability", "Containers(kubernetes and docker)"]
self.languages = {
"Portuguese": ["Native", "Fluent"],
"English": ["Intermediate", "Reading", "Writing", "Listening"]
}
def get_info(self):
return self.name, self.role, self.location, self.skills, self.knowledge, self.interests, self.languages





