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

Add Helm support for GKE hub feature membership #13379

Open
nvnmandadhi opened this issue Jan 4, 2023 · 2 comments
Open

Add Helm support for GKE hub feature membership #13379

nvnmandadhi opened this issue Jan 4, 2023 · 2 comments
Assignees
Labels
Milestone

Comments

@nvnmandadhi
Copy link

nvnmandadhi commented Jan 4, 2023

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 the 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 the issue is assigned to a user, that user is claiming responsibility for the issue. If the issue is assigned to "hashibot", a community member has claimed the issue already.

Description

Add support for syncing from Helm charts as the feature is in preview.

References:
https://cloud.google.com/anthos-config-management/docs/how-to/sync-helm-charts-from-artifact-registry
https://cloud.google.com/anthos-config-management/docs/reference/rootsync-reposync-fields#configuration_for_the_helm_repository

New or Affected Resource(s)

  • google_gke_hub_feature_membership

Potential Terraform Configuration

resource "google_gke_hub_feature_membership" "feature_member" {
  location = "global"
  feature = google_gke_hub_feature.feature.name
  membership = google_gke_hub_membership.membership.membership_id
  configmanagement {
    version = "1.14.0"
    config_sync {
     source_format = "unstructured"
      helm {
        repo = "oci://${AR_REGION}.pkg.dev/${PROJECT_ID}/${AR_REPO_NAME}"
        chart = "hello"
        version = "0.1.0"
        release_name = "test"
        auth = "gcpserviceaccount"
        gcp_service_account_email = "${GSA_NAME}@${PROJECT_ID}.iam.gserviceaccount.com"
        values = "<helm_chart_values>"
      }
    }
  }
  provider = google-beta
}

References

b/270753674

@nvnmandadhi
Copy link
Author

I'm working on this feature 👍

@rileykarson rileykarson added size/s tpgtools Issues related to the tpgtools generator labels Jan 30, 2023
@rileykarson rileykarson added this to the Goals milestone Jan 30, 2023
@mishanti
Copy link

Hi @nvnmandadhi! Any luck with that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

4 participants