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

Enable default apps from cluster chart #262

Merged
merged 32 commits into from
Aug 23, 2024
Merged

Enable default apps from cluster chart #262

merged 32 commits into from
Aug 23, 2024

Conversation

nprokopic
Copy link
Contributor

@nprokopic nprokopic commented Aug 8, 2024

Towards giantswarm/roadmap#3125

Warning

Cluster upgrade to a version with these changes will require manual upgrade steps.

Changes in this PR

Render default apps from cluster-vsphere.

Changed

  • Update cluster chart provider-integration config to enable rendering of default apps.

Added

  • vSphere-specific config for default apps

Removed

  • network-policies HelmRelease
  • coredns HelmRelease
  • cilium HelmRelease

⚠️ Cluster upgrade with required manual steps

The apps are migrated from default-apps-vsphere to cluster-vsphere in the following way:

  • Upgrade default-apps-vsphere App to the latest (future release with this PR Add flag to enable moving resources to cluster-vsphere default-apps-vsphere#277).
  • Update default-apps-vsphere Helm value .Values.deleteOptions.moveAppsHelmOwnershipToClusterVSphere to true.
    • All apps, except observability-bundle and security-bundle will get app-operator.giantswarm.io/paused: true annotation, so wait few minutes for the change to get applied by the Helm post-upgrade hook.
  • Delete default-apps-vsphere.
    • ⚠️ In case you are removing default-apps-vsphere from your gitops repo which is using Flux, depending on how Flux is configured default-apps-vsphere App may or may not get deleted from the management cluster. In case Flux does not delete default-apps-vsphere App, make sure to delete it manually from the management cluster.
    • App resources for all default apps will get deleted. Wait few minutes for this to happen.
    • Chart resources on the workload cluster will stay, so all apps will continue running.
  • Upgrade cluster-vsphere App to the latest (future release that includes this PR Enable default apps from cluster chart #262).
    • cluster-vsphere will deploy all default apps. Wait a few minutes for all Apps to be successfully deployed.
    • Chart resources on the workload cluster will get updated, as newly deployed App resources will take over the reconciliation of the existing Chart resources.

Trigger e2e tests

/run cluster-test-suites

@tinkerers-ci
Copy link

tinkerers-ci bot commented Aug 8, 2024

Note

As this is a draft PR no triggers from the PR body will be handled.

If you'd like to trigger them while draft please add them as a PR comment.

@nprokopic nprokopic marked this pull request as ready for review August 21, 2024 08:44
@nprokopic nprokopic requested a review from a team as a code owner August 21, 2024 08:44
Copy link
Contributor

@anvddriesch anvddriesch left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks reasonable to my eyes. However, I'd like to wait for @glitchcrab to review since he has been working a lot on this chart recently.

@nprokopic nprokopic requested a review from a team August 21, 2024 09:18
@nprokopic
Copy link
Contributor Author

Looks reasonable to my eyes. However, I'd like to wait for @glitchcrab to review since he has been working a lot on this chart recently.

This is basically what we have already done in CAPA and CAPZ. On other providers it had worked without issues.

Here I see only 1 potential issue now, which is around vertical-pod-autoscaler-crd. It used to be installed from default-apps-vsphere as an App CR. Now it's installed from cluster-vsphere (via cluster chart dependency), so what now happens:

  • vertical-pod-autoscaler-crd is installed as an App from default-apps-vsphere.
    • So here we get vertical-pod-autoscaler-crd Chart CR in the WC
  • default-apps-vsphere App is deleted, where Chart CRs remain in the WC (see details above for how this works)
  • cluster-vsphere is upgraded, so now it also installs vertical-pod-autoscaler-crd HelmRelease
  • outcome: we now have vertical-pod-autoscaler-crd HelmRelease in the MC and vertical-pod-autoscaler-crd Chart CR in the WC.
    • Now I'm checking if these 2 are conflicting somehow, and how we can safely remove old vertical-pod-autoscaler-crd Chart CR from the WC (without that deleting VPA CustomResourceDefinition 🙈).

@nprokopic
Copy link
Contributor Author

outcome: we now have vertical-pod-autoscaler-crd HelmRelease in the MC and vertical-pod-autoscaler-crd Chart CR in the WC.
Now I'm checking if these 2 are conflicting somehow, and how we can safely remove old vertical-pod-autoscaler-crd Chart CR from the WC (without that deleting VPA CustomResourceDefinition 🙈).

It should be possible to fix this manually, by pausing vertical-pod-autoscaler-crd Chart CR and deleting it. Then removing the leftover chart-operator finalizer. This way vertical-pod-autoscaler-crd Chart CR would get removed, without chart-operator trying to delete VPA CustomResourceDefinition).

It might be fine to just fix this manually, WDYT?

@nprokopic
Copy link
Contributor Author

It looks like that after the migration the VPA CustomResourceDefinition is applied by Flux, meaning it's (corretly) coming from vertical-pod-autoscaler-crd HelmRelease from cluster chart.

VPA CustomResourceDefinition has these labels after the migration (meaning it has been correctly migrated to be installed from cluster-vsphere):

labels:
  app.kubernetes.io/instance: vertical-pod-autoscaler-crd
  app.kubernetes.io/managed-by: Helm
  app.kubernetes.io/name: vertical-pod-autoscaler-crd
  app.kubernetes.io/version: 1.1.0
  application.giantswarm.io/team: turtles
  giantswarm.io/service-type: managed
  helm.sh/chart: vertical-pod-autoscaler-crd-3.1.0
  helm.toolkit.fluxcd.io/name: nik002-vertical-pod-autoscaler-crd
  helm.toolkit.fluxcd.io/namespace: org-nikola

So vertical-pod-autoscaler-crd Chart CR in the WC is a leftover. Only danger here is that chart-operator would periodically reconcile this Chart CR, so Flux and chart-operator would potentially periodically fight here.

Unless somebody yells objects here, I will just leave this as is, and add instructions to README on how to fix this manually after the cluster has been migrated.

@nprokopic
Copy link
Contributor Author

It should be possible to fix this manually, by pausing vertical-pod-autoscaler-crd Chart CR and deleting it. Then removing the leftover chart-operator finalizer. This way vertical-pod-autoscaler-crd Chart CR would get removed, without chart-operator trying to delete VPA CustomResourceDefinition).

Tested this, seems to be working.

Copy link
Member

@glitchcrab glitchcrab left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

with my limited understanding, this makes sense

@nprokopic
Copy link
Contributor Author

Testing this with e2e tests locally, with local e2e tests change (basically this giantswarm/clustertest#283, just with different version numbers as we still haven't released cluster-vsphere with this change).

And found an issue - cilium HelmRelease was still in the chart 🤦 not sure if I forgot to remove it, or rebasing put it back somehow (probably the former 😬)

@nprokopic
Copy link
Contributor Author

I ran CAPV Standard suite locally (with modified e2e tests to support cluster-vsphere without default-apps-vsphere) and the tests passed ✅ 🎉

Didn't run CAPV Upgrade suite, since the upgrade requires manual steps and cannot work in e2e tests.

CAPV Standard suite output
ginkgo --timeout 4h -v -r ./providers/capv/standard
Running Suite: CAPV Standard Suite - /Users/nikola/src/giantswarm/cluster-test-suites/providers/capv/standard
=============================================================================================================
Random Seed: 1724415976

Will run 32 of 32 specs
------------------------------
[BeforeSuite]
/Users/nikola/src/giantswarm/cluster-test-suites/internal/suite/setup.go:24
  {"level":"info","ts":"2024-08-23T14:26:33+02:00","msg":"Workload cluster name: t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:26:33+02:00","msg":"Organisation name: t-prgg9vl3ojakyhuggr"}
  {"level":"info","ts":"2024-08-23T14:26:33+02:00","msg":"Checking connection to MC is available."}
  {"level":"info","ts":"2024-08-23T14:26:33+02:00","msg":"MC API Endpoint: 'https://teleport.giantswarm.io:443'"}
  {"level":"info","ts":"2024-08-23T14:26:33+02:00","msg":"MC name: 'teleport.giantswarm.io'"}
  {"level":"info","ts":"2024-08-23T14:26:34+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:26:34+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:26:44+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:26:44+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:26:54+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:26:54+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:04+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:04+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:14+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:14+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:24+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:25+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:35+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:35+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:45+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:45+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:27:55+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:27:55+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:05+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:05+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:15+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:15+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:25+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:25+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:35+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:36+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:46+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:46+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:28:56+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:28:56+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:29:06+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:29:06+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:29:16+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:29:16+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:29:26+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:29:26+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:29:36+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:29:36+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T14:34:58+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:35:28+02:00","msg":"connection to api-server not yet available - failed to get API group resources: unable to retrieve the complete list of server APIs: v1: Get \"https://api.t-74kfrfc0lx2fb0r8ec.test.gigantic.io:6443/api/v1\": dial tcp 10.10.222.232:6443: i/o timeout"}
  {"level":"info","ts":"2024-08-23T14:35:38+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:39:57+02:00","msg":"connection to api-server not yet available - failed to get API group resources: unable to retrieve the complete list of server APIs: v1: Get \"https://api.t-74kfrfc0lx2fb0r8ec.test.gigantic.io:6443/api/v1\": dial tcp 10.10.222.232:6443: i/o timeout"}
  {"level":"info","ts":"2024-08-23T14:40:07+02:00","msg":"Checking for valid Kubeconfig for cluster t-74kfrfc0lx2fb0r8ec"}
  {"level":"info","ts":"2024-08-23T14:40:07+02:00","msg":"Got valid kubeconfig!"}
  {"level":"info","ts":"2024-08-23T14:40:07+02:00","msg":"KubeConfig isn't managed by Teleport, generating ServiceAccount in WC to assume"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"Namespace default exists"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"1 nodes ready, expecting 1"}
[BeforeSuite] PASSED [275.678 seconds]
------------------------------
Common tests default apps all default apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:23
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"Waiting for all apps to be deployed. Timeout: 15m0s"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"Checking default apps deployed from the unified cluster-vsphere app (with default apps), so skipping check of default-apps-vsphere App resource as it does not exist."}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:08+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:21+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:34+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:40:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:40:50+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:05+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:15+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:16+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:17+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:17+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:17+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:17+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:17+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:18+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:29+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:31+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:32+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:32+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:32+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:32+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:32+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:33+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:33+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:33+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:43+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:44+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:45+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:45+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:45+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:45+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:45+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:46+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:46+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:56+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:57+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:58+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:58+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:58+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:58+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:41:58+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:59+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:41:59+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:09+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:10+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:11+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:12+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:22+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:23+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:24+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:35+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:36+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:37+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:47+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:48+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:49+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:50+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:50+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:50+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:42:50+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:00+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:00+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:00+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:00+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-k8s-dns-node-cache' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:01+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:02+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [175.082 seconds]
------------------------------
Common tests observability-bundle apps all observability-bundle apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:74
  {"level":"info","ts":"2024-08-23T14:43:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:03+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [1.194 seconds]
------------------------------
Common tests security-bundle apps all security-bundle apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:104
  {"level":"info","ts":"2024-08-23T14:43:04+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:05+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:05+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:05+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T14:43:05+02:00","msg":"App status for 't-74kfrfc0lx2fb0r8ec-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [1.001 seconds]
------------------------------
Common tests basic should be able to connect to the management cluster
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:39
• [0.068 seconds]
------------------------------
Common tests basic should be able to connect to the workload cluster
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:43
• [0.191 seconds]
------------------------------
Common tests basic has all the control-plane nodes running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:47
  {"level":"info","ts":"2024-08-23T14:43:11+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:11+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:16+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:16+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:21+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:21+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:26+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:26+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:31+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:31+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:36+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:36+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:41+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:41+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:46+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:46+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:51+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:51+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:43:56+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:43:56+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:44:01+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:01+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T14:44:06+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:06+02:00","msg":"1 nodes ready, expecting 1"}
• [65.142 seconds]
------------------------------
Common tests basic has all the worker nodes running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:65
  {"level":"info","ts":"2024-08-23T14:44:16+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:16+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:21+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:21+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:26+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:26+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:31+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:31+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:36+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:36+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:41+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:41+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:46+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:46+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:51+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:51+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:44:56+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:44:56+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:45:01+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:45:01+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:45:06+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:45:06+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T14:45:11+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T14:45:11+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
• [65.404 seconds]
------------------------------
Common tests basic has all its Deployments Ready (means all replicas are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:79
  {"level":"info","ts":"2024-08-23T14:45:17+02:00","msg":"deployment kyverno/kyverno-admission-controller has 2/3 replicas available"}
  {"level":"info","ts":"2024-08-23T14:45:28+02:00","msg":"deployment kyverno/kyverno-admission-controller has 2/3 replicas available"}
  {"level":"info","ts":"2024-08-23T14:45:39+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:40+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:41+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:42+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:43+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:44+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:45+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:46+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:47+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:48+02:00","msg":"All (28) deployments have all replicas running"}
• [33.214 seconds]
------------------------------
Common tests basic has all its StatefulSets Ready (means all replicas are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:89
  {"level":"info","ts":"2024-08-23T14:45:50+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:51+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:52+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:53+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:54+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:55+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:56+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:57+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:58+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T14:45:59+02:00","msg":"All (2) statefulSets have all replicas running"}
• [11.001 seconds]
------------------------------
Common tests basic has all its DaemonSets Ready (means all daemon pods are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:99
  {"level":"info","ts":"2024-08-23T14:46:01+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:02+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:03+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:04+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:05+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:06+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:07+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:08+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:09+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T14:46:10+02:00","msg":"All (10) daemonSets have all daemon pods running"}
• [11.001 seconds]
------------------------------
Common tests basic has all its Jobs completed successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:109
  {"level":"info","ts":"2024-08-23T14:46:12+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:13+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:14+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:15+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:16+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:17+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:18+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:19+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:20+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T14:46:21+02:00","msg":"All (0) Jobs have completed successfully"}
• [11.002 seconds]
------------------------------
Common tests basic has all of its Pods in the Running state
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:116
  {"level":"info","ts":"2024-08-23T14:46:23+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:24+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:25+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:26+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:27+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:28+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:29+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:30+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:31+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T14:46:32+02:00","msg":"All (72) pods currently in a running or completed state"}
• [11.001 seconds]
------------------------------
Common tests basic has Cluster Ready condition with Status='True'
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:123
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"Found Cluster org-t-prgg9vl3ojakyhuggr/t-74kfrfc0lx2fb0r8ec condition Ready with Status='True' and Reason='', expected condition with Status='True' and Reason=''"}
• [0.263 seconds]
------------------------------
Common tests basic has all machine pools ready and running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:132
  [SKIPPED] in [It] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:139 @ 08/23/24 14:46:34.155
S [SKIPPED] [0.106 seconds]
Common tests basic [It] has all machine pools ready and running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:132

  [SKIPPED] Machine pools are not found
  In [It] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:139 @ 08/23/24 14:46:34.155
------------------------------
Common tests cert-manager ClusterIssuers cert-manager default ClusterIssuers are present and ready
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/certmanager.go:38
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"Checking ClusterIssuer 'selfsigned-giantswarm'"}
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"ClusterIssuer 'selfsigned-giantswarm' is present"}
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"Found status.condition with type 'Ready' and status 'True' in ClusterIssuer 'selfsigned-giantswarm'"}
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"Checking ClusterIssuer 'letsencrypt-giantswarm'"}
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"ClusterIssuer 'letsencrypt-giantswarm' is present"}
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"Found status.condition with type 'Ready' and status 'True' in ClusterIssuer 'letsencrypt-giantswarm'"}
• [0.129 seconds]
------------------------------
Common tests dns sets up the api DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:44
  {"level":"info","ts":"2024-08-23T14:46:34+02:00","msg":"resolved domain api.t-74kfrfc0lx2fb0r8ec.test.gigantic.io to [10.10.222.232]"}
• [0.429 seconds]
------------------------------
Common tests dns sets up the bastion DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:58
  [SKIPPED] in [It] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:60 @ 08/23/24 14:46:34.889
S [SKIPPED] [0.175 seconds]
Common tests dns [It] sets up the bastion DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:58

  [SKIPPED] Bastion is not supported.
  In [It] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:60 @ 08/23/24 14:46:34.889
------------------------------
Common tests hello world should have cert-manager and external-dns deployed
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:47
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.889
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should have cert-manager and external-dns deployed
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:47

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.889
------------------------------
Common tests hello world should deploy ingress-nginx
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:62
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should deploy ingress-nginx
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:62

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
------------------------------
Common tests hello world cluster wildcard ingress DNS must be resolvable
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:91
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] cluster wildcard ingress DNS must be resolvable
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:91

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
------------------------------
Common tests hello world should deploy the hello-world app
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:113
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should deploy the hello-world app
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:113

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.89
------------------------------
Common tests hello world ingress resource has load balancer in status
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:167
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] ingress resource has load balancer in status
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:167

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
------------------------------
Common tests hello world should have a ready Certificate generated
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:195
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should have a ready Certificate generated
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:195

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
------------------------------
Common tests hello world hello world app responds successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:235
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] hello world app responds successfully
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:235

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.891
------------------------------
Common tests hello world uninstall apps
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:264
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.892
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] uninstall apps
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:264

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 14:46:34.892
------------------------------
Common tests metrics creates test pod
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:76
  {"level":"info","ts":"2024-08-23T14:46:40+02:00","msg":"Mimir detected"}
• [5.511 seconds]
------------------------------
Common tests metrics ensure key metrics are available on prometheus
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:88
  {"level":"info","ts":"2024-08-23T14:46:40+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_status_condition%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:40+02:00","msg":"Metric \"kube_node_status_condition\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:40+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_spec_unschedulable%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Metric \"kube_node_spec_unschedulable\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_created%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Metric \"kube_node_created\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28coredns_dns_request_duration_seconds_count%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Metric \"coredns_dns_request_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:41+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28coredns_dns_request_duration_seconds_bucket%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:42+02:00","msg":"Metric \"coredns_dns_request_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:42+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28network_latency_seconds_sum%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:42+02:00","msg":"Metric \"network_latency_seconds_sum\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:42+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_flowcontrol_dispatched_requests_total%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Metric \"apiserver_flowcontrol_dispatched_requests_total\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_flowcontrol_request_concurrency_limit%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Metric \"apiserver_flowcontrol_request_concurrency_limit\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_request_duration_seconds_bucket%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Metric \"apiserver_request_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:43+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_request_total%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Metric \"apiserver_admission_webhook_request_total\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_admission_duration_seconds_sum%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Metric \"apiserver_admission_webhook_admission_duration_seconds_sum\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_admission_duration_seconds_count%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Metric \"apiserver_admission_webhook_admission_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:44+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_request_total%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:45+02:00","msg":"Metric \"apiserver_request_total\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:45+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_audit_event_total%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:45+02:00","msg":"Metric \"apiserver_audit_event_total\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:45+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28workqueue_queue_duration_seconds_count%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Metric \"workqueue_queue_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28workqueue_queue_duration_seconds_bucket%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Metric \"workqueue_queue_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28scheduler_pod_scheduling_duration_seconds_count%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Metric \"scheduler_pod_scheduling_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:46+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28scheduler_pod_scheduling_duration_seconds_bucket%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:47+02:00","msg":"Metric \"scheduler_pod_scheduling_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:47+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28etcd_request_duration_seconds_count%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:47+02:00","msg":"Metric \"etcd_request_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T14:46:47+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28etcd_request_duration_seconds_bucket%7Bcluster_id%3D%22t-74kfrfc0lx2fb0r8ec%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-74kfrfc0lx2fb0r8ec%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-74kfrfc0lx2fb0r8ec-metrics-test'"}
  {"level":"info","ts":"2024-08-23T14:46:48+02:00","msg":"Metric \"etcd_request_duration_seconds_bucket\" was found"}
• [7.776 seconds]
------------------------------
Common tests metrics clean up test pod
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:97
• [30.570 seconds]
------------------------------
Common tests scale scales node by creating anti-affinity pods
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:87
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:33 @ 08/23/24 14:47:18.75
  [SKIPPED] in [AfterEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:151 @ 08/23/24 14:47:18.75
S [SKIPPED] [0.001 seconds]
Common tests scale [BeforeEach] scales node by creating anti-affinity pods
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:31
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:87

  [SKIPPED] autoscaling is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:33 @ 08/23/24 14:47:18.75
------------------------------
Common tests storage has a at least one storage class available
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/storage.go:40
• [11.001 seconds]
------------------------------
Common tests storage when a pod uses a persistent volume claim runs successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/storage.go:62
• [35.076 seconds]
------------------------------
Common tests teleport cluster is registered
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:36
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:29 @ 08/23/24 14:48:04.829
S [SKIPPED] [0.000 seconds]
Common tests teleport [BeforeEach] cluster is registered
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:23
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:36

  [SKIPPED] TELEPORT_IDENTITY_FILE env var not set, skipping teleport test
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:29 @ 08/23/24 14:48:04.829
------------------------------
[AfterSuite]
/Users/nikola/src/giantswarm/cluster-test-suites/internal/suite/setup.go:46
  {"level":"info","ts":"2024-08-23T14:48:05+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:05+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: teleport.finalizer.giantswarm.io, encryption-provider-operator.finalizers.giantswarm.io, observability.giantswarm.io/monitoring, giantswarm.io/logging-operator, operatorkit.giantswarm.io/pss-operator-pss-version-controller, operatorkit.giantswarm.io/prometheus-meta-operator-cluster-api-controller, operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io, dns-operator-route53.finalizers.giantswarm.io)"}
  {"level":"info","ts":"2024-08-23T14:48:15+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:15+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T14:48:25+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:25+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T14:48:35+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:35+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:48:45+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:45+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:48:55+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:48:55+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:05+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:05+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:15+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:15+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:25+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:25+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:35+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:35+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:45+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:45+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:49:55+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:49:55+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:05+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:05+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:15+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:15+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:25+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:26+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:36+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:36+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:46+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:46+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:50:56+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:50:56+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:06+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:06+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:16+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:16+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:26+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:26+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:36+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:36+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:46+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:46+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:51:56+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:51:56+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:06+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:06+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:16+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:16+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:26+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:26+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:36+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:36+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:46+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:47+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:52:57+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:52:57+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:07+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:07+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:17+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:17+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:27+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:27+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:37+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:37+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:47+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:47+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:53:57+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:53:57+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:07+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:07+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:17+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:17+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:27+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:27+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:37+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:37+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:47+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:47+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:54:57+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:54:57+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:07+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:07+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:17+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:18+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:28+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:28+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:38+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:38+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:48+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:48+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:55:58+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:55:58+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:56:08+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:08+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:56:18+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:18+02:00","msg":"Still exists: Cluster 't-74kfrfc0lx2fb0r8ec' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T14:56:28+02:00","msg":"Checking if Cluster 't-74kfrfc0lx2fb0r8ec' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:28+02:00","msg":"Cluster 't-74kfrfc0lx2fb0r8ec' no longer exists"}
  {"level":"info","ts":"2024-08-23T14:56:28+02:00","msg":"Checking if Organization 't-prgg9vl3ojakyhuggr' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:28+02:00","msg":"Still exists: Organization 't-prgg9vl3ojakyhuggr' (finalizers: organization.giantswarm.io/finalizer)"}
  {"level":"info","ts":"2024-08-23T14:56:38+02:00","msg":"Checking if Organization 't-prgg9vl3ojakyhuggr' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:39+02:00","msg":"Still exists: Organization 't-prgg9vl3ojakyhuggr' (finalizers: organization.giantswarm.io/finalizer)"}
  {"level":"info","ts":"2024-08-23T14:56:49+02:00","msg":"Checking if Organization 't-prgg9vl3ojakyhuggr' still exists"}
  {"level":"info","ts":"2024-08-23T14:56:49+02:00","msg":"Organization 't-prgg9vl3ojakyhuggr' no longer exists"}
[AfterSuite] PASSED [524.299 seconds]
------------------------------

Ran 20 of 32 Specs in 1276.331 seconds
SUCCESS! -- 20 Passed | 0 Failed | 0 Pending | 12 Skipped
PASS

Ginkgo ran 1 suite in 21m33.116115458s
Test Suite Passed

Copy link
Contributor

There were differences in the rendered Helm template, please check! ⚠️

Output
=== Differences when rendered with values file helm/cluster-vsphere/ci/test-wc-values.yaml ===

(file level)
  - six documents removed:
    ---
    # Source: cluster-vsphere/templates/helmreleases/cilium-helmrelease.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: release-name-cilium
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        cluster-apps-operator.giantswarm.io/watching: 
        giantswarm.io/service-priority: highest
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      releaseName: cilium
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          # used by renovate
    # repo: giantswarm/cilium-app
    version: 0.26.0
          chart: cilium
          sourceRef:
            name: release-name-default
            kind: HelmRepository
      kubeConfig:
        secretRef:
          name: release-name-kubeconfig
      interval: 5m
      install:
        remediation:
          retries: 30
      # Default values
    # https://github.com/giantswarm/cilium-app/blob/main/helm/cilium/values.yaml
    values:
        ipam:
          mode: kubernetes
        k8sServiceHost: api.release-name.k8s.test
        k8sServicePort: 6443
        kubeProxyReplacement: "true"
        global:
          podSecurityStandards:
            enforced: true
        hubble:
          relay:
            enabled: true
            tolerations:
            - key: node-role.kubernetes.io/master
              effect: NoSchedule
              operator: Exists
            - key: node-role.kubernetes.io/control-plane
              effect: NoSchedule
              operator: Exists
            - key: node.cloudprovider.kubernetes.io/uninitialized
              effect: NoSchedule
              operator: Equal
              value: "true"
          ui:
            tolerations:
            - key: node-role.kubernetes.io/master
              effect: NoSchedule
              operator: Exists
            - key: node-role.kubernetes.io/control-plane
              effect: NoSchedule
              operator: Exists
            - key: node.cloudprovider.kubernetes.io/uninitialized
              effect: NoSchedule
              operator: Equal
              value: "true"
    # Source: cluster-vsphere/templates/helmreleases/coredns-helmrelease.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: release-name-coredns
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      releaseName: coredns
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: coredns-app
          # used by renovate
    # repo: giantswarm/coredns-app
    version: 1.21.0
          sourceRef:
            kind: HelmRepository
            name: release-name-default
      dependsOn:
      - name: release-name-cilium
        namespace: org-giantswarm
      kubeConfig:
        secretRef:
          name: release-name-kubeconfig
      interval: 10m
      install:
        remediation:
          retries: 30
      # Default values
    # https://github.com/giantswarm/coredns-app/blob/main/helm/coredns-app/values.yaml
    values:
        cluster:
          calico:
            CIDR: 10.244.0.0/16
          kubernetes:
            API:
              clusterIPRange: 172.31.0.0/16
            DNS:
              IP: 172.31.0.10
        global:
          podSecurityStandards:
            enforced: true
    # Source: cluster-vsphere/templates/helmreleases/netpol-helmrelease.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: release-name-network-policies
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      releaseName: network-policies
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: network-policies
          # used by renovate
    # repo: giantswarm/network-policies-app
    version: 0.1.1
          sourceRef:
            kind: HelmRepository
            name: release-name-cluster
      dependsOn:
      - name: release-name-cilium
        namespace: org-giantswarm
      kubeConfig:
        secretRef:
          name: release-name-kubeconfig
      interval: 10m
      install:
        remediation:
          retries: 30
      # Default values
    # https://github.com/giantswarm/network-policies-app/blob/main/helm/network-policies-app/values.yaml
    values:
        allowEgressToDNS:
          enabled: true
    # Source: cluster-vsphere/templates/helmreleases/default-helmrepository.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: release-name-default
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      interval: 10m
      url: "https://giantswarm.github.io/default-catalog"
    # Source: cluster-vsphere/templates/helmreleases/default-helmrepository.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: release-name-default-test
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      interval: 10m
      url: "https://giantswarm.github.io/default-test-catalog"
    # Source: cluster-vsphere/templates/helmreleases/netpol-helmrelease.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: release-name-cluster
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        app: cluster-vsphere
        app.kubernetes.io/managed-by: Helm
        cluster.x-k8s.io/cluster-name: release-name
        giantswarm.io/cluster: release-name
        giantswarm.io/organization: giantswarm
        application.giantswarm.io/team: rocket
        app.kubernetes.io/version: 0.60.1
        helm.sh/chart: cluster-vsphere-0.60.1
    spec:
      interval: 10m
      url: "https://giantswarm.github.io/cluster-catalog"
    
  
    ---
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: test-cert-exporter-user-values
      namespace: org-giantswarm
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    data:
      values: |
        ciliumNetworkPolicy:
          enabled: true
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
      name: test-cert-manager-user-values
      namespace: org-giantswarm
    data:
      values: |
        ciliumNetworkPolicy:
          enabled: true
        dns01RecursiveNameserversOnly: false
        enableServiceLinks: true
        ingressShim:
          defaultIssuerGroup: cert-manager.io
          defaultIssuerKind: ClusterIssuer
          defaultIssuerName: letsencrypt-giantswarm
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
      name: test-etcd-k8s-res-count-exporter-user-values
      namespace: org-giantswarm
    data:
      values: |
        etcd:
          cacertpath: /certs/ca.crt
          certpath: /certs/server.crt
          hostPath: /etc/kubernetes/pki/etcd/
          keypath: /certs/server.key
          prefix: /registry/
        events:
          prefix: /registry/events/
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
      name: test-metrics-server-user-values
      namespace: org-giantswarm
    data:
      values: |
        ciliumNetworkPolicy:
          enabled: true
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
      name: test-net-exporter-user-values
      namespace: org-giantswarm
    data:
      values: |
        ciliumNetworkPolicy:
          enabled: true
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: v1
    kind: ConfigMap
    metadata:
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
      name: test-node-exporter-user-values
      namespace: org-giantswarm
    data:
      values: |
        disableConntrackCollector: true
        disableNvmeCollector: true
        
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-capi-node-labeler
      namespace: org-giantswarm
    spec:
      catalog: default
      name: capi-node-labeler
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 0.5.0
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-cert-exporter
      namespace: org-giantswarm
    spec:
      catalog: default
      name: cert-exporter
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 2.9.2
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-cert-exporter-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-cert-manager
      namespace: org-giantswarm
    spec:
      catalog: default
      name: cert-manager-app
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 3.8.1
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
        secret:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-cert-manager-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-chart-operator-extensions
      namespace: org-giantswarm
    spec:
      catalog: default
      name: chart-operator-extensions
      namespace: giantswarm
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 1.1.2
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-cilium-servicemonitors
      namespace: org-giantswarm
    spec:
      catalog: default
      name: cilium-servicemonitors
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 0.1.2
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-etcd-k8s-res-count-exporter
      namespace: org-giantswarm
    spec:
      catalog: default
      name: etcd-kubernetes-resources-count-exporter
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 1.10.0
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-etcd-k8s-res-count-exporter-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-k8s-dns-node-cache
      namespace: org-giantswarm
    spec:
      catalog: default
      name: k8s-dns-node-cache-app
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 2.8.1
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-metrics-server
      namespace: org-giantswarm
    spec:
      catalog: default
      name: metrics-server-app
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 2.4.2
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-metrics-server-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-net-exporter
      namespace: org-giantswarm
    spec:
      catalog: default
      name: net-exporter
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 1.21.0
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-net-exporter-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-node-exporter
      namespace: org-giantswarm
    spec:
      catalog: default
      name: node-exporter-app
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 1.19.0
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
      userConfig:
        configMap:
          name: test-node-exporter-user-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # explicitly instruct app-operator that this App depends on a HelmRelease (otherwise it will just check App resources)
    app-operator.giantswarm.io/depends-on-helmrelease: "true"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-coredns
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
        app-operator.giantswarm.io/version: 0.0.0
      name: test-observability-bundle
      namespace: org-giantswarm
    spec:
      catalog: default
      name: observability-bundle
      namespace: org-giantswarm
      kubeConfig:
        inCluster: true
      version: 1.5.3
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-kyverno-crds
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-observability-policies
      namespace: org-giantswarm
    spec:
      catalog: default
      name: observability-policies
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 0.0.1
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
        app-operator.giantswarm.io/version: 0.0.0
      name: test-security-bundle
      namespace: org-giantswarm
    spec:
      catalog: giantswarm
      name: security-bundle
      namespace: org-giantswarm
      kubeConfig:
        inCluster: true
      version: 1.8.1
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-teleport-kube-agent
      namespace: org-giantswarm
    spec:
      catalog: default
      name: teleport-kube-agent
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 0.9.2
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
        secret:
          name: test-cluster-values
          namespace: org-giantswarm
      extraConfigs:
      - kind: configMap
        name: test-teleport-kube-agent-config
        namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/apps.yaml
    apiVersion: application.giantswarm.io/v1alpha1
    kind: App
    metadata:
      annotations:
        cluster.giantswarm.io/description: "test cluster"
        # app-operator will make sure that the app on which it depends is installed before
    app-operator.giantswarm.io/depends-on: test-prometheus-operator-crd
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
        giantswarm.io/managed-by: cluster
      name: test-vertical-pod-autoscaler
      namespace: org-giantswarm
    spec:
      catalog: default
      name: vertical-pod-autoscaler-app
      namespace: kube-system
      kubeConfig:
        context:
          name: test-admin@test
        inCluster: false
        secret:
          name: test-kubeconfig
          namespace: org-giantswarm
      version: 5.2.4
      config:
        configMap:
          name: test-cluster-values
          namespace: org-giantswarm
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmreleases.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: test-cilium
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      releaseName: cilium
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: cilium
          version: 0.26.0
          sourceRef:
            kind: HelmRepository
            name: test-default
      kubeConfig:
        secretRef:
          name: test-kubeconfig
      interval: 5m
      install:
        remediation:
          retries: 30
      values:
        defaultPolicies: {}
        extraPolicies: {}
        global:
          podSecurityStandards:
            enforced: true
        hubble:
          relay:
            enabled: true
            tolerations:
            - effect: NoSchedule
              key: node-role.kubernetes.io/master
              operator: Exists
            - effect: NoSchedule
              key: node-role.kubernetes.io/control-plane
              operator: Exists
            - effect: NoSchedule
              key: node.cloudprovider.kubernetes.io/uninitialized
              operator: Equal
              value: "true"
          ui:
            tolerations:
            - effect: NoSchedule
              key: node-role.kubernetes.io/master
              operator: Exists
            - effect: NoSchedule
              key: node-role.kubernetes.io/control-plane
              operator: Exists
            - effect: NoSchedule
              key: node.cloudprovider.kubernetes.io/uninitialized
              operator: Equal
              value: "true"
        ipam:
          mode: kubernetes
        k8sServiceHost: api.test.k8s.test
        k8sServicePort: 6443
        kubeProxyReplacement: "true"
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmreleases.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: test-coredns
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      releaseName: coredns
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: coredns-app
          version: 1.21.0
          sourceRef:
            kind: HelmRepository
            name: test-default
      dependsOn:
      - name: test-cilium
        namespace: org-giantswarm
      kubeConfig:
        secretRef:
          name: test-kubeconfig
      interval: 5m
      install:
        remediation:
          retries: 30
      values:
        cluster:
          calico:
            CIDR: 10.244.0.0/16
          kubernetes:
            API:
              clusterIPRange: 172.31.0.0/16
            DNS:
              IP: 172.31.0.10
        global:
          podSecurityStandards:
            enforced: true
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmreleases.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: test-network-policies
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      releaseName: network-policies
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: network-policies
          version: 0.1.1
          sourceRef:
            kind: HelmRepository
            name: test-cluster
      dependsOn:
      - name: test-cilium
        namespace: org-giantswarm
      kubeConfig:
        secretRef:
          name: test-kubeconfig
      interval: 1m
      install:
        remediation:
          retries: 30
      values:
        allowEgressToDNS:
          enabled: true
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmreleases.yaml
    apiVersion: helm.toolkit.fluxcd.io/v2beta1
    kind: HelmRelease
    metadata:
      name: test-vertical-pod-autoscaler-crd
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      releaseName: vertical-pod-autoscaler-crd
      targetNamespace: kube-system
      storageNamespace: kube-system
      chart:
        spec:
          chart: vertical-pod-autoscaler-crd
          version: 3.1.0
          sourceRef:
            kind: HelmRepository
            name: test-default
      kubeConfig:
        secretRef:
          name: test-kubeconfig
      interval: 1m
      install:
        remediation:
          retries: 30
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmrepositories.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: test-default
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      interval: 5m
      url: "https://giantswarm.github.io/default-catalog"
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmrepositories.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: test-default-test
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      interval: 5m
      url: "https://giantswarm.github.io/default-test-catalog"
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmrepositories.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: test-cluster
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      interval: 10m
      url: "https://giantswarm.github.io/cluster-catalog"
    # Source: cluster-vsphere/charts/cluster/templates/apps/helmrepositories.yaml
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: HelmRepository
    metadata:
      name: test-cluster-test
      namespace: org-giantswarm
      annotations:
        cluster.giantswarm.io/description: "test cluster"
      labels:
        # deprecated: "app: cluster-vsphere" label is deprecated and it will be removed after upgrading
    # to Kubernetes 1.25. We still need it here because existing ClusterResourceSet selectors
    # need this label on the Cluster resource.
    app: cluster-vsphere
        app.kubernetes.io/name: cluster
        app.kubernetes.io/version: 1.2.1
        app.kubernetes.io/part-of: cluster-vsphere
        app.kubernetes.io/instance: release-name
        app.kubernetes.io/managed-by: Helm
        helm.sh/chart: cluster-1.2.1
        application.giantswarm.io/team: turtles
        giantswarm.io/cluster: test
        giantswarm.io/organization: giantswarm
        giantswarm.io/service-priority: highest
        cluster.x-k8s.io/cluster-name: test
        cluster.x-k8s.io/watch-filter: capi
    spec:
      interval: 10m
      url: "https://giantswarm.github.io/cluster-test-catalog"
    
  

@nprokopic
Copy link
Contributor Author

CAPV on CAPZ suite passed locally ✅ 🎉

CAPV on CAPZ suite output
ginkgo --timeout 4h -v -r ./providers/capv/on-capz
Running Suite: CAPV on CAPZ Suite - /Users/nikola/src/giantswarm/cluster-test-suites/providers/capv/on-capz
===========================================================================================================
Random Seed: 1724422027

Will run 32 of 32 specs
------------------------------
[BeforeSuite]
/Users/nikola/src/giantswarm/cluster-test-suites/internal/suite/setup.go:24
  {"level":"info","ts":"2024-08-23T16:07:19+02:00","msg":"Workload cluster name: t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:07:19+02:00","msg":"Organisation name: t-gnn2u5zel7o8rq0yl6"}
  {"level":"info","ts":"2024-08-23T16:07:19+02:00","msg":"Checking connection to MC is available."}
  {"level":"info","ts":"2024-08-23T16:07:19+02:00","msg":"MC API Endpoint: 'https://teleport.giantswarm.io:443'"}
  {"level":"info","ts":"2024-08-23T16:07:19+02:00","msg":"MC name: 'teleport.giantswarm.io'"}
  {"level":"info","ts":"2024-08-23T16:07:20+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:07:20+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:07:30+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:07:30+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:07:40+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:07:40+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:07:50+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:07:50+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:00+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:01+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:11+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:11+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:21+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:21+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:31+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:31+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:41+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:41+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:08:51+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:08:51+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:01+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:09:01+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:11+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:09:12+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:22+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:09:22+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:32+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:09:32+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:42+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:09:42+02:00","msg":"kubeconfig secret not yet available"}
  {"level":"info","ts":"2024-08-23T16:09:52+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:03+02:00","msg":"connection to api-server not yet available - failed to get API group resources: unable to retrieve the complete list of server APIs: v1: Get \"https://api.t-l9u2srpawr07o9qmjv.azuretest.gigantic.io:6443/api/v1\": read tcp 10.0.255.6:60000->10.0.253.1:6443: read: connection reset by peer - error from a previous attempt: EOF"}
  {"level":"info","ts":"2024-08-23T16:10:13+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:13+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:10:23+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:24+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:10:34+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:34+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:10:44+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:44+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:10:54+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:10:54+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:04+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:04+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:14+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:14+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:24+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:24+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:34+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:34+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:44+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:44+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:11:54+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:11:54+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:04+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:04+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:14+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:14+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:24+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:24+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:34+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:34+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:44+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:44+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:12:54+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:12:55+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:13:05+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:13:05+02:00","msg":"Error occurred while trying to get kubeconfig secret - kubeconfig secret found but data[kubeconfig.yaml] not populated"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"Checking for valid Kubeconfig for cluster t-l9u2srpawr07o9qmjv"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"Got valid kubeconfig!"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"1 nodes ready, expecting 1"}
[BeforeSuite] PASSED [356.292 seconds]
------------------------------
Common tests default apps all default apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:23
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"Waiting for all apps to be deployed. Timeout: 15m0s"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"Checking default apps deployed from the unified cluster-vsphere app (with default apps), so skipping check of default-apps-vsphere App resource as it does not exist."}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:15+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:28+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:28+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:28+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:41+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:13:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:13:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:46+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:14:59+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:01+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:01+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:01+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:12+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:13+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:13+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:13+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:13+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:13+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:14+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:14+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:14+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:14+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:27+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:27+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:27+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:40+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:40+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:15:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:15:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:16+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:29+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:42+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:55+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:16:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:16:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:47+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:48+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:49+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:17:50+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:00+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:02+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:03+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:18:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:18:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:25+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:26+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:51+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:52+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:53+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:20:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:20:54+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:04+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:05+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:06+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:07+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:17+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:18+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:19+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:20+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:30+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:31+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:32+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:32+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:32+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:32+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:32+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:33+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:43+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:44+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:45+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:56+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:21:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:57+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:21:58+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:22:08+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:09+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:10+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:11+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:22:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:21+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is not yet as expected: expectedStatus='deployed' actualStatus='' (reason: '')"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:22+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:23+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:24+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-capi-node-labeler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cert-manager' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-chart-operator-extensions' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:34+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-cilium-servicemonitors' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-etcd-k8s-res-count-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-k8s-dns-node-cache' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-metrics-server' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-net-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:35+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-node-exporter' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:36+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-teleport-kube-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-vertical-pod-autoscaler' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [447.711 seconds]
------------------------------
Common tests observability-bundle apps all observability-bundle apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:74
  {"level":"info","ts":"2024-08-23T16:22:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-observability-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:37+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-grafana-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kube-prometheus-stack' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-agent' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-prometheus-operator-crd' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-promtail' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [1.218 seconds]
------------------------------
Common tests security-bundle apps all security-bundle apps are deployed without issues
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/apps.go:104
  {"level":"info","ts":"2024-08-23T16:22:38+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-security-bundle' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-crds' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policies' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
  {"level":"info","ts":"2024-08-23T16:22:39+02:00","msg":"App status for 't-l9u2srpawr07o9qmjv-kyverno-policy-operator' is as expected: expectedStatus='deployed' actualStatus='deployed'"}
• [0.978 seconds]
------------------------------
Common tests basic should be able to connect to the management cluster
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:39
• [0.072 seconds]
------------------------------
Common tests basic should be able to connect to the workload cluster
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:43
• [0.226 seconds]
------------------------------
Common tests basic has all the control-plane nodes running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:47
  {"level":"info","ts":"2024-08-23T16:22:45+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:22:45+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:22:50+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:22:50+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:22:55+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:22:55+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:00+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:00+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:05+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:05+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:10+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:10+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:15+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:15+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:20+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:20+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:25+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:25+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:30+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:30+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:35+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:35+02:00","msg":"1 nodes ready, expecting 1"}
  {"level":"info","ts":"2024-08-23T16:23:40+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:40+02:00","msg":"1 nodes ready, expecting 1"}
• [65.142 seconds]
------------------------------
Common tests basic has all the worker nodes running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:65
  {"level":"info","ts":"2024-08-23T16:23:50+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:50+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:23:55+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:23:55+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:00+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:00+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:05+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:05+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:10+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:10+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:15+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:15+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:20+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:20+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:25+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:25+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:30+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:30+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:35+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:35+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:40+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:40+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
  {"level":"info","ts":"2024-08-23T16:24:45+02:00","msg":"Checking for ready nodes"}
  {"level":"info","ts":"2024-08-23T16:24:45+02:00","msg":"2 nodes ready, expecting between 2 and 2"}
• [65.429 seconds]
------------------------------
Common tests basic has all its Deployments Ready (means all replicas are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:79
  {"level":"info","ts":"2024-08-23T16:24:51+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:52+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:53+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:54+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:55+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:56+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:57+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:58+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:24:59+02:00","msg":"All (28) deployments have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:00+02:00","msg":"All (28) deployments have all replicas running"}
• [11.002 seconds]
------------------------------
Common tests basic has all its StatefulSets Ready (means all replicas are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:89
  {"level":"info","ts":"2024-08-23T16:25:02+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:03+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:04+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:05+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:06+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:07+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:08+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:09+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:10+02:00","msg":"All (2) statefulSets have all replicas running"}
  {"level":"info","ts":"2024-08-23T16:25:11+02:00","msg":"All (2) statefulSets have all replicas running"}
• [11.001 seconds]
------------------------------
Common tests basic has all its DaemonSets Ready (means all daemon pods are running)
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:99
  {"level":"info","ts":"2024-08-23T16:25:13+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:14+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:15+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:16+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:17+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:18+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:19+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:20+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:21+02:00","msg":"All (10) daemonSets have all daemon pods running"}
  {"level":"info","ts":"2024-08-23T16:25:22+02:00","msg":"All (10) daemonSets have all daemon pods running"}
• [11.001 seconds]
------------------------------
Common tests basic has all its Jobs completed successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:109
  {"level":"info","ts":"2024-08-23T16:25:24+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:25+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:26+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:27+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:28+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:29+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:30+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:31+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:32+02:00","msg":"All (0) Jobs have completed successfully"}
  {"level":"info","ts":"2024-08-23T16:25:33+02:00","msg":"All (0) Jobs have completed successfully"}
• [11.002 seconds]
------------------------------
Common tests basic has all of its Pods in the Running state
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:116
  {"level":"info","ts":"2024-08-23T16:25:35+02:00","msg":"pod kyverno/kyverno-admission-controller-6b6dd798bf-jccvs in Pending phase"}
  {"level":"info","ts":"2024-08-23T16:25:47+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:48+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:49+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:50+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:51+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:52+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:53+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:54+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:55+02:00","msg":"All (72) pods currently in a running or completed state"}
  {"level":"info","ts":"2024-08-23T16:25:56+02:00","msg":"All (72) pods currently in a running or completed state"}
• [22.140 seconds]
------------------------------
Common tests basic has Cluster Ready condition with Status='True'
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:123
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"Found Cluster org-t-gnn2u5zel7o8rq0yl6/t-l9u2srpawr07o9qmjv condition Ready with Status='True' and Reason='', expected condition with Status='True' and Reason=''"}
• [0.284 seconds]
------------------------------
Common tests basic has all machine pools ready and running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:132
  [SKIPPED] in [It] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:139 @ 08/23/24 16:25:57.604
S [SKIPPED] [0.062 seconds]
Common tests basic [It] has all machine pools ready and running
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:132

  [SKIPPED] Machine pools are not found
  In [It] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/basic.go:139 @ 08/23/24 16:25:57.604
------------------------------
Common tests cert-manager ClusterIssuers cert-manager default ClusterIssuers are present and ready
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/certmanager.go:38
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"Checking ClusterIssuer 'selfsigned-giantswarm'"}
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"ClusterIssuer 'selfsigned-giantswarm' is present"}
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"Found status.condition with type 'Ready' and status 'True' in ClusterIssuer 'selfsigned-giantswarm'"}
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"Checking ClusterIssuer 'letsencrypt-giantswarm'"}
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"ClusterIssuer 'letsencrypt-giantswarm' is present"}
  {"level":"info","ts":"2024-08-23T16:25:57+02:00","msg":"Found status.condition with type 'Ready' and status 'True' in ClusterIssuer 'letsencrypt-giantswarm'"}
• [0.177 seconds]
------------------------------
Common tests dns sets up the api DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:44
  {"level":"info","ts":"2024-08-23T16:25:58+02:00","msg":"resolved domain api.t-l9u2srpawr07o9qmjv.azuretest.gigantic.io to [10.10.222.221]"}
• [0.331 seconds]
------------------------------
Common tests dns sets up the bastion DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:58
  [SKIPPED] in [It] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:60 @ 08/23/24 16:25:58.281
S [SKIPPED] [0.168 seconds]
Common tests dns [It] sets up the bastion DNS records
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:58

  [SKIPPED] Bastion is not supported.
  In [It] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/dns.go:60 @ 08/23/24 16:25:58.281
------------------------------
Common tests hello world should have cert-manager and external-dns deployed
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:47
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should have cert-manager and external-dns deployed
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:47

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
------------------------------
Common tests hello world should deploy ingress-nginx
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:62
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should deploy ingress-nginx
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:62

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
------------------------------
Common tests hello world cluster wildcard ingress DNS must be resolvable
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:91
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] cluster wildcard ingress DNS must be resolvable
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:91

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
------------------------------
Common tests hello world should deploy the hello-world app
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:113
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] should deploy the hello-world app
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:113

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.281
------------------------------
Common tests hello world ingress resource has load balancer in status
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:167
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.282
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] ingress resource has load balancer in status
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:167

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.282
------------------------------
Common tests hello world should have a ready Certificate generated
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:195
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.282
S [SKIPPED] [0.001 seconds]
Common tests hello world [BeforeEach] should have a ready Certificate generated
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:195

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.282
------------------------------
Common tests hello world hello world app responds successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:235
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.283
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] hello world app responds successfully
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:235

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.283
------------------------------
Common tests hello world uninstall apps
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:264
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.283
S [SKIPPED] [0.000 seconds]
Common tests hello world [BeforeEach] uninstall apps
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:41
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:264

  [SKIPPED] external-dns is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/hello.go:43 @ 08/23/24 16:25:58.283
------------------------------
Common tests metrics creates test pod
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:76
  {"level":"info","ts":"2024-08-23T16:26:03+02:00","msg":"Mimir detected"}
• [5.394 seconds]
------------------------------
Common tests metrics ensure key metrics are available on prometheus
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:88
  {"level":"info","ts":"2024-08-23T16:26:03+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_status_condition%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Metric \"kube_node_status_condition\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_spec_unschedulable%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Metric \"kube_node_spec_unschedulable\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28kube_node_created%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Metric \"kube_node_created\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:04+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28coredns_dns_request_duration_seconds_count%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:05+02:00","msg":"Metric \"coredns_dns_request_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:05+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28coredns_dns_request_duration_seconds_bucket%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:05+02:00","msg":"Metric \"coredns_dns_request_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:05+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28network_latency_seconds_sum%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:06+02:00","msg":"Metric \"network_latency_seconds_sum\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:06+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_flowcontrol_dispatched_requests_total%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:11+02:00","msg":"Metric \"apiserver_flowcontrol_dispatched_requests_total\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:11+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_flowcontrol_request_concurrency_limit%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:13+02:00","msg":"Metric \"apiserver_flowcontrol_request_concurrency_limit\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:13+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_request_duration_seconds_bucket%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:14+02:00","msg":"Metric \"apiserver_request_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:14+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_request_total%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:14+02:00","msg":"Metric \"apiserver_admission_webhook_request_total\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:14+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_admission_duration_seconds_sum%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Metric \"apiserver_admission_webhook_admission_duration_seconds_sum\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_admission_webhook_admission_duration_seconds_count%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Metric \"apiserver_admission_webhook_admission_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_request_total%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Metric \"apiserver_request_total\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:15+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28apiserver_audit_event_total%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:16+02:00","msg":"Metric \"apiserver_audit_event_total\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:16+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28workqueue_queue_duration_seconds_count%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:16+02:00","msg":"Metric \"workqueue_queue_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:16+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28workqueue_queue_duration_seconds_bucket%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Metric \"workqueue_queue_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28scheduler_pod_scheduling_duration_seconds_count%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Metric \"scheduler_pod_scheduling_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28scheduler_pod_scheduling_duration_seconds_bucket%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Metric \"scheduler_pod_scheduling_duration_seconds_bucket\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:17+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28etcd_request_duration_seconds_count%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:18+02:00","msg":"Metric \"etcd_request_duration_seconds_count\" was found"}
  {"level":"info","ts":"2024-08-23T16:26:18+02:00","msg":"Running [wget -O- -Y off mimir-gateway.mimir:80/prometheus/api/v1/query?query=absent%28etcd_request_duration_seconds_bucket%7Bcluster_id%3D%22t-l9u2srpawr07o9qmjv%22%7D%29+or+label_replace%28vector%280%29%2C+%22cluster_id%22%2C+%22t-l9u2srpawr07o9qmjv%22%2C+%22%22%2C+%22%22%29] in container 'test' in pod 't-l9u2srpawr07o9qmjv-metrics-test'"}
  {"level":"info","ts":"2024-08-23T16:26:18+02:00","msg":"Metric \"etcd_request_duration_seconds_bucket\" was found"}
• [15.037 seconds]
------------------------------
Common tests metrics clean up test pod
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/metrics.go:97
• [15.502 seconds]
------------------------------
Common tests scale scales node by creating anti-affinity pods
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:87
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:33 @ 08/23/24 16:37:13.079
  [SKIPPED] in [AfterEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:151 @ 08/23/24 16:37:13.08
S [SKIPPED] [0.001 seconds]
Common tests scale [BeforeEach] scales node by creating anti-affinity pods
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:31
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:87

  [SKIPPED] autoscaling is not supported
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/scale.go:33 @ 08/23/24 16:37:13.079
------------------------------
Common tests storage has a at least one storage class available
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/storage.go:40
• [11.001 seconds]
------------------------------
Common tests storage when a pod uses a persistent volume claim runs successfully
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/storage.go:62
• [33.491 seconds]
------------------------------
Common tests teleport cluster is registered
/Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:36
  [SKIPPED] in [BeforeEach] - /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:29 @ 08/23/24 16:37:57.543
S [SKIPPED] [0.001 seconds]
Common tests teleport [BeforeEach] cluster is registered
  [BeforeEach] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:23
  [It] /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:36

  [SKIPPED] TELEPORT_IDENTITY_FILE env var not set, skipping teleport test
  In [BeforeEach] at: /Users/nikola/src/giantswarm/cluster-test-suites/internal/common/teleport.go:29 @ 08/23/24 16:37:57.543
------------------------------
[AfterSuite]
/Users/nikola/src/giantswarm/cluster-test-suites/internal/suite/setup.go:46
  {"level":"info","ts":"2024-08-23T16:37:57+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:37:57+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: teleport.finalizer.giantswarm.io, encryption-provider-operator.finalizers.giantswarm.io, giantswarm.io/logging-operator, observability.giantswarm.io/monitoring, operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, operatorkit.giantswarm.io/pss-operator-pss-version-controller, operatorkit.giantswarm.io/prometheus-meta-operator-cluster-api-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:07+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:07+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:17+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:17+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:27+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:28+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:38+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:38+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:48+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:48+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:38:58+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:38:58+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:39:08+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:08+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller, cluster.cluster.x-k8s.io)"}
  {"level":"info","ts":"2024-08-23T16:39:18+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:18+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:39:28+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:28+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:39:38+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:38+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:39:48+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:48+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:39:58+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:39:58+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:08+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:08+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:18+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:18+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:28+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:28+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:38+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:39+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:49+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:49+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:40:59+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:40:59+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:41:09+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:41:12+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:41:22+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:41:22+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:42:13+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:42:15+02:00","msg":"Still exists: Cluster 't-l9u2srpawr07o9qmjv' (finalizers: operatorkit.giantswarm.io/cluster-apps-operator-cluster-controller)"}
  {"level":"info","ts":"2024-08-23T16:42:25+02:00","msg":"Checking if Cluster 't-l9u2srpawr07o9qmjv' still exists"}
  {"level":"info","ts":"2024-08-23T16:42:25+02:00","msg":"Cluster 't-l9u2srpawr07o9qmjv' no longer exists"}
  {"level":"info","ts":"2024-08-23T16:42:26+02:00","msg":"Checking if Organization 't-gnn2u5zel7o8rq0yl6' still exists"}
  {"level":"info","ts":"2024-08-23T16:42:26+02:00","msg":"Still exists: Organization 't-gnn2u5zel7o8rq0yl6' (finalizers: organization.giantswarm.io/finalizer)"}
  {"level":"info","ts":"2024-08-23T16:42:36+02:00","msg":"Checking if Organization 't-gnn2u5zel7o8rq0yl6' still exists"}
  {"level":"info","ts":"2024-08-23T16:42:36+02:00","msg":"Still exists: Organization 't-gnn2u5zel7o8rq0yl6' (finalizers: organization.giantswarm.io/finalizer)"}
  {"level":"info","ts":"2024-08-23T16:42:46+02:00","msg":"Checking if Organization 't-gnn2u5zel7o8rq0yl6' still exists"}
  {"level":"info","ts":"2024-08-23T16:42:46+02:00","msg":"Organization 't-gnn2u5zel7o8rq0yl6' no longer exists"}
[AfterSuite] PASSED [246.711 seconds]
------------------------------

Ran 20 of 32 Specs in 1331.384 seconds
SUCCESS! -- 20 Passed | 0 Failed | 0 Pending | 12 Skipped
PASS

Ginkgo ran 1 suite in 22m23.168386s
Test Suite Passed

@nprokopic nprokopic added the skip/ci Instructs pr-gatekeeper to ignore any required PR checks label Aug 23, 2024
@nprokopic nprokopic merged commit 25c8ab9 into main Aug 23, 2024
13 checks passed
@nprokopic nprokopic deleted the enable-default-apps branch August 23, 2024 14:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
skip/ci Instructs pr-gatekeeper to ignore any required PR checks
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants