Skip to content

Commit

Permalink
fix(sysbox): add ns back (#807)
Browse files Browse the repository at this point in the history
* add ns back

* bump
  • Loading branch information
rauerhans authored Aug 16, 2023
1 parent 39c2aaa commit 5654a3b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sysbox/terraform/aws/deps.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: plural.sh/v1alpha1
kind: Dependencies
metadata:
description: sysbox aws setup
version: 0.1.2
version: 0.1.3
spec:
dependencies:
- name: aws-bootstrap
Expand Down
9 changes: 9 additions & 0 deletions sysbox/terraform/aws/main.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
resource "kubernetes_namespace" "sysbox" {
metadata {
name = var.namespace
labels = {
"app.kubernetes.io/managed-by" = "plural"
"app.plural.sh/name" = "sysbox"
}
}
}

data "aws_eks_cluster" "cluster" {
name = var.cluster_name
Expand Down

0 comments on commit 5654a3b

Please sign in to comment.