mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-07 14:32:17 -04:00

find -name '*.go' -exec sed -i 's/SPDX-License-Identifier: AGPL-3.0-only/SPDX-License-Identifier: BUSL-1.1/' {} +
11 lines
427 B
Go
11 lines
427 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
// Package sgreconciler contains a reconciler that reconciles on cloud provider infrastructure.
|
|
// It is used to create, delete and update the spec of infrastructure-related k8s resources based on the
|
|
// actual state of the infrastructure.
|
|
// It uses polling (with additional triggers) to check the state of the infrastructure.
|
|
package sgreconciler
|