Skip to content

Commit

Permalink
Update to 4.0.1 though losing data (#24)
Browse files Browse the repository at this point in the history
Bug: T367983
  • Loading branch information
vivian-rook authored Jun 19, 2024
1 parent 0ab2465 commit 0b213b7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 35 deletions.
2 changes: 1 addition & 1 deletion ansible/superset-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
name: superset
chart_repo_url: "https://apache.github.io/superset"
chart_ref: superset
chart_version: 0.12.9
chart_version: 0.12.7
release_namespace: default
values: "{{ lookup('template', 'templates/values.yaml.j2') | from_yaml }}"
#dependency_update: true
28 changes: 0 additions & 28 deletions tofu/123-5.tf

This file was deleted.

12 changes: 6 additions & 6 deletions tofu/126-1.tf → tofu/126-2.tf
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
resource "openstack_containerinfra_cluster_v1" "k8s_126_1" {
name = "superset${var.name[var.datacenter]}-126-1"
cluster_template_id = resource.openstack_containerinfra_clustertemplate_v1.template_126_1.id
resource "openstack_containerinfra_cluster_v1" "k8s_126_2" {
name = "superset${var.name[var.datacenter]}-126-2"
cluster_template_id = resource.openstack_containerinfra_clustertemplate_v1.template_126_2.id
master_count = 1
node_count = var.workers[var.datacenter]
}

resource "local_file" "kube_config" {
content = resource.openstack_containerinfra_cluster_v1.k8s_126_1.kubeconfig.raw_config
content = resource.openstack_containerinfra_cluster_v1.k8s_126_2.kubeconfig.raw_config
filename = "kube.config"
}

resource "openstack_containerinfra_clustertemplate_v1" "template_126_1" {
name = "superset${var.name[var.datacenter]}-126-1"
resource "openstack_containerinfra_clustertemplate_v1" "template_126_2" {
name = "superset${var.name[var.datacenter]}-126-2"
coe = "kubernetes"
dns_nameserver = "8.8.8.8"
docker_storage_driver = "overlay2"
Expand Down

0 comments on commit 0b213b7

Please sign in to comment.