Skip to content

Instantly share code, notes, and snippets.

@timebertt
Created January 5, 2022 12:40
Show Gist options
  • Save timebertt/9789276a771fd282b50056ccafe43619 to your computer and use it in GitHub Desktop.
Save timebertt/9789276a771fd282b50056ccafe43619 to your computer and use it in GitHub Desktop.
Example controller-runtime client usage
var (
ctx context.Context
c client.Client // "sigs.k8s.io/controller-runtime/pkg/client"
deployment *appsv1.Deployment // "k8s.io/api/apps/v1"
shoot *gardencorev1beta1.Shoot // "github.com/gardener/gardener/pkg/apis/core/v1beta1"
)
err := c.Update(ctx, deployment)
// or
err = c.Update(ctx, shoot)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment