Skip to content

Commit

Permalink
Move the existing fluent-operator under the logging component
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristian-ZH committed Mar 16, 2023
1 parent d36d894 commit 9dcab83
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 32 deletions.
20 changes: 0 additions & 20 deletions pkg/operation/botanist/component/fluentoperator/doc.go

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:generate ../../../../../../hack/generate-crds.sh crd- fluentbit.fluent.io
//go:generate ../../../../../../../hack/generate-crds.sh crd- fluentbit.fluent.io

package assets
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ import (

var (
//go:embed assets/crd-fluentbit.fluent.io_clusterfilters.yaml
clusterFilterCRD string
fluentBitClusterFilterCRD string
//go:embed assets/crd-fluentbit.fluent.io_clusterfluentbitconfigs.yaml
clusterFBConfigCRD string
fluentBitClusterFBConfigCRD string
//go:embed assets/crd-fluentbit.fluent.io_clusterinputs.yaml
clusterInputCRD string
fluentBitClusterInputCRD string
//go:embed assets/crd-fluentbit.fluent.io_clusteroutputs.yaml
clusterOutputCRD string
fluentBitClusterOutputCRD string
//go:embed assets/crd-fluentbit.fluent.io_clusterparsers.yaml
clusterParserCRD string
fluentBitClusterParserCRD string
//go:embed assets/crd-fluentbit.fluent.io_fluentbits.yaml
fluentBitCRD string

Expand All @@ -44,11 +44,11 @@ var (

func init() {
resources = append(resources,
clusterFilterCRD,
clusterFBConfigCRD,
clusterInputCRD,
clusterOutputCRD,
clusterParserCRD,
fluentBitClusterFilterCRD,
fluentBitClusterFBConfigCRD,
fluentBitClusterInputCRD,
fluentBitClusterOutputCRD,
fluentBitClusterParserCRD,
fluentBitCRD,
)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (

"github.com/gardener/gardener/pkg/client/kubernetes"
"github.com/gardener/gardener/pkg/operation/botanist/component"
"github.com/gardener/gardener/pkg/operation/botanist/component/fluentoperator"
"github.com/gardener/gardener/pkg/operation/botanist/component/logging/fluentoperator"
. "github.com/gardener/gardener/pkg/utils/test/matchers"
)

Expand Down

0 comments on commit 9dcab83

Please sign in to comment.