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

GKE add support for Private Registry with Private CA #18121

Closed
alexbacchin opened this issue May 14, 2024 · 2 comments
Closed

GKE add support for Private Registry with Private CA #18121

alexbacchin opened this issue May 14, 2024 · 2 comments

Comments

@alexbacchin
Copy link

alexbacchin commented May 14, 2024

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 a user, that user is claiming responsibility for the issue.
  • Customers working with a Google Technical Account Manager or Customer Engineer can ask them to reach out internally to expedite investigation and resolution of this issue.

Description

Based on the Access private registries with private CA certificates provides an option for private registries using Private or Enterprise CAs

This feature will allow COS containerd to pull containers from private registries with a Private CA

New or Affected Resource(s)

google_container_cluster

Potential Terraform Configuration

resource "google_container_cluster" "primary" {
  name               = "marcellus-wallace"
  location           = "us-central1-a"
  initial_node_count = 3
  
  node_pool_defaults {
      containerd_config {
           enabled = true
           certificate_authority_domain_config  {
                 fqdns = ["registry.example.com"]
                 secret_uri= "projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION"
            }
             certificate_authority_domain_config  {
                 fqdns = ["10.5.3.6:5000"]
                 secret_uri= "projects/$PROJECT_ID2/secrets/$SECRET_NAME2/versions/$VERSION2"
           }
       }
   }
}

References

https://cloud.google.com/kubernetes-engine/docs/reference/rest/v1/projects.locations.clusters#nodeconfigdefaults

b/343221002

@github-actions github-actions bot added forward/review In review; remove label to forward service/container labels May 14, 2024
@rileykarson rileykarson added this to the Goals milestone May 28, 2024
@rileykarson rileykarson added enhancement and removed forward/review In review; remove label to forward labels May 28, 2024
@alexbacchin
Copy link
Author

Resolved #18160

Copy link

github-actions bot commented Jul 7, 2024

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 7, 2024
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

3 participants