| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 |
- /*
- Copyright © The ESO Authors
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- https://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- */
- package addon
- import (
- "context"
- "time"
- fluxhelm "github.com/fluxcd/helm-controller/api/v2"
- "github.com/fluxcd/pkg/apis/meta"
- fluxsrc "github.com/fluxcd/source-controller/api/v1"
- v1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
- apierrors "k8s.io/apimachinery/pkg/api/errors"
- metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
- "k8s.io/apimachinery/pkg/types"
- "k8s.io/apimachinery/pkg/util/wait"
- . "github.com/onsi/ginkgo/v2"
- . "github.com/onsi/gomega"
- )
- const fluxNamespace = "flux-system"
- // HelmChart installs the specified Chart into the cluster.
- type FluxHelmRelease struct {
- Name string
- Namespace string
- TargetNamespace string
- HelmChart string
- HelmRepo string
- HelmRevision string
- HelmValues string
- config *Config
- }
- // Setup stores the config in an internal field
- // to get access to the k8s api in orderto fetch logs.
- func (c *FluxHelmRelease) Setup(cfg *Config) error {
- c.config = cfg
- return nil
- }
- // Install adds the chart repo and installs the helm chart.
- func (c *FluxHelmRelease) Install() error {
- app := &fluxsrc.HelmRepository{
- ObjectMeta: metav1.ObjectMeta{
- Name: c.Name,
- Namespace: fluxNamespace,
- },
- Spec: fluxsrc.HelmRepositorySpec{
- URL: c.HelmRepo,
- },
- }
- err := c.config.CRClient.Create(GinkgoT().Context(), app)
- if err != nil {
- return err
- }
- hr := &fluxhelm.HelmRelease{
- ObjectMeta: metav1.ObjectMeta{
- Name: c.Name,
- Namespace: c.Namespace,
- },
- Spec: fluxhelm.HelmReleaseSpec{
- ReleaseName: c.Name,
- TargetNamespace: c.TargetNamespace,
- Values: &v1.JSON{
- Raw: []byte(c.HelmValues),
- },
- Install: &fluxhelm.Install{
- CreateNamespace: true,
- Remediation: &fluxhelm.InstallRemediation{
- Retries: -1,
- },
- },
- Chart: &fluxhelm.HelmChartTemplate{
- Spec: fluxhelm.HelmChartTemplateSpec{
- Version: c.HelmRevision,
- Chart: c.HelmChart,
- SourceRef: fluxhelm.CrossNamespaceObjectReference{
- Kind: "HelmRepository",
- Name: c.Name,
- Namespace: fluxNamespace,
- },
- },
- },
- },
- }
- err = c.config.CRClient.Create(GinkgoT().Context(), hr)
- if err != nil {
- return err
- }
- // wait for app to become ready
- err = wait.PollUntilContextTimeout(GinkgoT().Context(), time.Second*5, time.Minute*3, true, func(ctx context.Context) (bool, error) {
- var hr fluxhelm.HelmRelease
- err := c.config.CRClient.Get(GinkgoT().Context(), types.NamespacedName{
- Name: c.Name,
- Namespace: c.Namespace,
- }, &hr)
- if err != nil {
- return false, nil
- }
- for _, cond := range hr.GetConditions() {
- GinkgoWriter.Printf("check condition: %s=%s: %s\n", cond.Type, cond.Status, cond.Message)
- if cond.Type == meta.ReadyCondition && cond.Status == metav1.ConditionTrue {
- return true, nil
- }
- }
- return false, nil
- })
- if err != nil {
- return err
- }
- return waitForExternalSecretWebhookReady(webhookServiceName(c.Name), c.TargetNamespace)
- }
- // Uninstall removes the chart aswell as the repo.
- func (c *FluxHelmRelease) Uninstall() error {
- err := uninstallCRDs(c.config)
- if err != nil {
- return err
- }
- err = c.config.CRClient.Delete(GinkgoT().Context(), &fluxhelm.HelmRelease{
- ObjectMeta: metav1.ObjectMeta{
- Name: c.Name,
- Namespace: c.Namespace,
- },
- })
- if err != nil && !apierrors.IsNotFound(err) {
- return err
- }
- Eventually(func() bool {
- var hr fluxhelm.HelmRelease
- err = c.config.CRClient.Get(GinkgoT().Context(), types.NamespacedName{
- Name: c.Name,
- Namespace: c.Namespace,
- }, &hr)
- if apierrors.IsNotFound(err) {
- return true
- }
- return false
- }).WithPolling(time.Second).WithTimeout(time.Second * 30).Should(BeTrue())
- if err := c.config.CRClient.Delete(GinkgoT().Context(), &fluxsrc.HelmRepository{
- ObjectMeta: metav1.ObjectMeta{
- Name: c.Name,
- Namespace: fluxNamespace,
- },
- }); err != nil && !apierrors.IsNotFound(err) {
- return err
- }
- return nil
- }
- func (c *FluxHelmRelease) Logs() error {
- return nil
- }
|