Skip to content
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

Cloud Composer: scheduler_count update does not change number of scheduler in environment #11940

Closed
kubasieron opened this issue Jun 23, 2022 · 3 comments
Labels

Comments

@kubasieron
Copy link

kubasieron commented Jun 23, 2022

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request.
  • Please do not leave +1 or me too comments, they generate extra noise for issue followers and do not help prioritize the request.
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment.
  • If an issue is assigned to the modular-magician user, it is either in the process of being autogenerated, or is planned to be autogenerated soon. If an issue is assigned to a user, that user is claiming responsibility for the issue. If an issue is assigned to hashibot, a community member has claimed the issue already.

Terraform Version

all versions

Terraform Configuration Files

provider "google" {
  region = "us-central1"
  project = "my-project"
}

resource "google_composer_environment" "testman" {
  name   = "sample-name"
  region = "us-central1"
  project = "my-project"

  config {
    software_config {
      image_version = "composer-1.19.0-airflow-2.2.5"
      scheduler_count = 2
    }

    private_environment_config {
      enable_private_endpoint = true
    }

    node_config {
      ip_allocation_policy {
        use_ip_aliases = true
      }
    }
  }
}

Debug Output

Panic Output

Expected Behavior

number of schedulers in environment is updated

Actual Behavior

number of schedulers in environment was not updated

Steps to Reproduce

starting config:

provider "google" {
  region = "us-central1"
  project = "my-project"
}

resource "google_composer_environment" "testman" {
  name   = "sample-name"
  region = "us-central1"
  project = "my-project"

  config {
    software_config {
      image_version = "composer-1.19.0-airflow-2.2.5"
    }

    private_environment_config {
      enable_private_endpoint = true
    }

    node_config {
      ip_allocation_policy {
        use_ip_aliases = true
      }
    }
  }
}
  1. terraform apply
  2. environment is created properly
  3. changing configuration (scheduler_count -> 2)
provider "google" {
  region = "us-central1"
  project = "my-project"
}

resource "google_composer_environment" "testman" {
  name   = "sample-name"
  region = "us-central1"
  project = "my-project"

  config {
    software_config {
      image_version = "composer-1.19.0-airflow-2.2.5"
      scheduler_count = 2
    }

    private_environment_config {
      enable_private_endpoint = true
    }

    node_config {
      ip_allocation_policy {
        use_ip_aliases = true
      }
    }
  }
}
  1. terraform apply
  2. environment still has one scheduler

Important Factoids

References

  • #0000
@kubasieron kubasieron added the bug label Jun 23, 2022
@kubasieron
Copy link
Author

I wish to work on this item

@megan07
Copy link
Contributor

megan07 commented Jun 24, 2022

@megan07 megan07 closed this as completed Jun 24, 2022
@github-actions
Copy link

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues.
If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 25, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

2 participants