diff --git a/namespaces/default/snekbox-310/README.md b/namespaces/default/snekbox-310/README.md deleted file mode 100644 index 4b36c68..0000000 --- a/namespaces/default/snekbox-310/README.md +++ /dev/null @@ -1,5 +0,0 @@ -# Snekbox-forms - -This folder contains manifests for a Snekbox service that is running Python 3.10. - -The deployment manifest for this service is based on in manifest found inside the snekbox repository at [python-discord/snekbox](https://github.com/python-discord/snekbox), modified only by removing the volume mount, 3rd party dep installation script, and hard coding the image version to the most recent 3.10 image on snekbox ghcr. diff --git a/namespaces/default/snekbox-310/deployment.yaml b/namespaces/default/snekbox-310/deployment.yaml deleted file mode 100644 index 9ab7dd7..0000000 --- a/namespaces/default/snekbox-310/deployment.yaml +++ /dev/null @@ -1,22 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: snekbox-310 -spec: - replicas: 1 - selector: - matchLabels: - app: snekbox-310 - template: - metadata: - labels: - app: snekbox-310 - spec: - containers: - - name: snekbox-310 - image: ghcr.io/python-discord/snekbox:2022.8.14.2 - imagePullPolicy: Always - ports: - - containerPort: 8060 - securityContext: - privileged: true diff --git a/namespaces/default/snekbox-310/service.yaml b/namespaces/default/snekbox-310/service.yaml deleted file mode 100644 index 3d8348d..0000000 --- a/namespaces/default/snekbox-310/service.yaml +++ /dev/null @@ -1,11 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: snekbox-310 -spec: - selector: - app: snekbox-310 - ports: - - protocol: TCP - port: 80 - targetPort: 8060