- 
          
- 
                Notifications
    You must be signed in to change notification settings 
- Fork 5
Add the codejam winners to the k8s cluster #605
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
b6605f4    to
    926fc3f      
    Compare
  
    | OctoDNS Plan for  | 
| Operation | Name | Type | TTL | Value | Source | 
|---|---|---|---|---|---|
| Delete | gardenias | CNAME | 300 | linode-lb.box.pydis.wtf. | |
| Delete | monsteras | CNAME | 300 | linode-lb.box.pydis.wtf. | |
| Delete | tulips | CNAME | 300 | linode-lb.box.pydis.wtf. | 
Summary: Creates=0, Updates=0, Deletes=3, Existing=35, Meta=False
These will be deleted once Johannes next takes his meds
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
Adds Kubernetes configuration for deploying the "monsteras" codejam winner application to the k8s cluster. The PR creates a complete deployment setup with service exposure and ingress routing.
- Creates Kubernetes deployment, service, and ingress resources for the monsteras application
- Configures TLS authentication and HTTPS routing through pythondiscord.com domain
- Sets up security contexts and container configurations for the application
Reviewed Changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description | 
|---|---|
| kubernetes/namespaces/codejam-winners/monsteras/service.yaml | Defines service to expose the monsteras application on port 80 | 
| kubernetes/namespaces/codejam-winners/monsteras/ingress.yaml | Configures ingress with TLS authentication and domain routing | 
| kubernetes/namespaces/codejam-winners/monsteras/deployment.yaml | Sets up deployment with container specifications and security contexts | 
| image: ghcr.io/python-discord/cj-monsteras | ||
| imagePullPolicy: Always | ||
| ports: | ||
| - containerPort: 80 | 
    
      
    
      Copilot
AI
    
    
    
      Sep 28, 2025 
    
  
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Port mismatch: the container exposes port 80 but the service targets port 8080. Either change containerPort to 8080 to match the service's targetPort, or update the service's targetPort to 80.
| - containerPort: 80 | |
| - containerPort: 8080 | 
926fc3f    to
    9e6caa1      
    Compare
  
    
These will be deleted once Johannes next takes his meds