Skip to content

Commit

Permalink
Revert "Deploy out a test deployment"
Browse files Browse the repository at this point in the history
This reverts commit ea8f2b8.
  • Loading branch information
BryanFauble committed Aug 16, 2024
1 parent 8c7e271 commit 5e72309
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions deployments/stacks/dpe-k8s-deployments/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,38 +42,3 @@ module "argo-cd" {
source = "spacelift.io/sagebionetworks/argo-cd/aws"
version = "0.3.1"
}

resource "kubernetes_namespace" "my-cool-resource" {
metadata {
name = "my-cool-namespace"
}
}


resource "kubectl_manifest" "my-deployment" {
depends_on = [kubernetes_namespace.my-cool-resource]

yaml_body = <<YAML
apiVersion: apps/v1
kind: Deployment
metadata:
name: flask-dep
labels:
app: flask-helloworld
spec:
replicas: 1
selector:
matchLabels:
app: flask-helloworld
template:
metadata:
labels:
app: flask-helloworld
spec:
containers:
- name: flask
image: digitalocean/flask-helloworld:latest
ports:
- containerPort: 5000
YAML
}

0 comments on commit 5e72309

Please sign in to comment.